From 1465acdf2425e101889cd825beb33f67255f84dc Mon Sep 17 00:00:00 2001 From: cannorin Date: Wed, 12 Feb 2025 00:56:53 +0900 Subject: [PATCH] Add links (2) --- .../src/routes/(main)/links/+page.server.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/web/src/routes/(main)/links/+page.server.ts 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, + }; +}