Socialify

Folder ..

Viewing +page.ts
15 lines (14 loc) • 375.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 = '404 Page Not Found';
    const description = 'The page you are looking for does not exist.';

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