arubinosky: add seo metatags

This commit is contained in:
2025-01-08 20:43:21 +09:00
parent 47b89e310e
commit 403d989d3b
3 changed files with 36 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
import type { SeoProps } from "./types";
export * from "./types";
import deepmerge from "deepmerge";
export const defaultSeo: SeoProps = {

View File

@@ -0,0 +1,17 @@
import type { SeoProps } from "$components/seo";
export async function load() {
return {
seo: {
title: "あるびのすきー",
openGraph: {
title: "あるびのすきー",
description: "とにかくかわいい Misskey インスタンス",
},
twitter: {
title: "あるびのすきー",
description: "とにかくかわいい Misskey インスタンス",
},
} as SeoProps,
};
}

View File

@@ -0,0 +1,17 @@
import type { SeoProps } from "$components/seo";
export async function load() {
return {
seo: {
title: "あるびのすきー",
openGraph: {
title: "あるびのすきー",
description: "とにかくかわいい Misskey インスタンス",
},
twitter: {
title: "あるびのすきー",
description: "とにかくかわいい Misskey インスタンス",
},
} as SeoProps,
};
}