Socialify

Folder ..

Viewing +page.ts
15 lines (14 loc) • 519.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
import type { PageLoad } from './$types';
import { ready, notFound } from "../../store";

ready.set(true);
notFound.set(false);
export const load: PageLoad = async () => {
    const title = 'What is Pagoda?';
    const description = 'Pagoda is a central hub for all things Neocities. It\'s a place where you engage with the community by building your own guild or establishing a shrine and sharing your creations with others.';

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