From f0e73cf90005709e20b2f16f63d67d6802af3332 Mon Sep 17 00:00:00 2001 From: Pauline Date: Mon, 22 Jan 2024 04:27:34 +0100 Subject: feat(layout): add seo metadata to all pages --- apps/website/src/data/site-info.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 apps/website/src/data/site-info.ts (limited to 'apps/website/src/data') diff --git a/apps/website/src/data/site-info.ts b/apps/website/src/data/site-info.ts new file mode 100644 index 0000000..cb7784f --- /dev/null +++ b/apps/website/src/data/site-info.ts @@ -0,0 +1,22 @@ +export interface SiteInfo { + name: string; + title: string; + description: string; + image: { + src: string; + alt: string; + }; +}; + +// TODO: move config.ts to here so we can use astro components inside config +const siteInfo: SiteInfo = { + name: 'Polyfrost', + title: 'Polyfrost', + description: 'Building beautiful mods and tools, byte by byte', + image: { + src: '/media/polyfrost/minimal.svg', + alt: 'Polyfrost Logo', + }, +}; + +export default siteInfo; -- cgit