From bf6ff79391ecce21d287ff20b95b3b4532148b8e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 9 Sep 2025 03:20:38 -0700 Subject: [PATCH] Rudimentary import for SEO --- src/lib/seo.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/lib/seo.ts diff --git a/src/lib/seo.ts b/src/lib/seo.ts new file mode 100644 index 00000000..35b3e7fa --- /dev/null +++ b/src/lib/seo.ts @@ -0,0 +1,9 @@ +export function head({ title, description }: { title?: string; description?: string }) { + return ` + ${title ?? 'Granblue.team'} + ${description ? `` : ''} + + ${description ? `` : ''} + + ` +}