aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/data
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website/src/data')
-rw-r--r--apps/website/src/data/site-info.ts22
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;