Socialify

Folder ..

Viewing +page.ts
12 lines (11 loc) • 362.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import type { PageLoad } from './$types';

export const load: PageLoad = async () => {
    const title = 'Home';
    const description = 'Welcome to Neocities Pagoda — a central hub for sharing and discovering art, blinkies, buttons, and connect with other creators.';

    return {
        meta: {
            title,
            description
        }
    }
};