diff --git a/apps/web/src/routes/(main)/links/+page.server.ts b/apps/web/src/routes/(main)/links/+page.server.ts new file mode 100644 index 0000000..8e03841 --- /dev/null +++ b/apps/web/src/routes/(main)/links/+page.server.ts @@ -0,0 +1,18 @@ +import type { SeoProps } from "$lib/components/seo"; + +export async function load() { + return { + seo: { + title: "links - cannorin.net", + description: "other links and recommendations", + openGraph: { + title: "links - cannorin.net", + description: "other links and recommendations", + }, + twitter: { + title: "links - cannorin.net", + description: "other links and recommendations", + }, + } as SeoProps, + }; +}