diff options
Diffstat (limited to 'apps/website/src/data')
-rw-r--r-- | apps/website/src/data/site-info.ts | 22 |
1 files changed, 22 insertions, 0 deletions
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; |