diff --git a/apps/frontend/src/layouts/Layout.astro b/apps/frontend/src/layouts/Layout.astro index cf5c54a..5a17100 100644 --- a/apps/frontend/src/layouts/Layout.astro +++ b/apps/frontend/src/layouts/Layout.astro @@ -23,6 +23,7 @@ import '../styles/global.css'; Blog How-tos Code + Contact us @@ -39,6 +40,7 @@ import '../styles/global.css'; Blog How-tos Code + Contact us
diff --git a/apps/frontend/src/pages/contact.astro b/apps/frontend/src/pages/contact.astro new file mode 100644 index 0000000..c8fd434 --- /dev/null +++ b/apps/frontend/src/pages/contact.astro @@ -0,0 +1,69 @@ +--- +import Layout from '../layouts/Layout.astro'; + +const DISCORD_INVITE_LINK = import.meta.env.DISCORD_INVITE_LINK || "https://discord.gg/your-discord-link"; +--- + + +
+
+

Contact Us

+

+ Have questions, feedback, or just want to say hi? We'd love to hear from you! +

+ + + + + Join our Discord + +
+
+ +
+
+
+

+ 📧 Email Us +

+

+ For business inquiries, support, or detailed feedback, feel free to drop us an email. +

+ + contact@teletype.hu + +
+ +
+

+ 💬 Community +

+

+ Join our primarily Hungarian-speaking community (English speakers are also welcome!). +

+ +
+
+

Discord

+

We have a vibrant Discord server for real-time chat and support.

+ + Join Discord Server → + +
+ +
+

IRC Chat

+
+ Network: Libera.Chat + #teletypegames +
+
+
+
+
+
+
diff --git a/docker-compose.yml b/docker-compose.yml index dbf7f37..7008e4f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -120,6 +120,7 @@ services: - HOST=0.0.0.0 - WEBAPP_GITEA_TOKEN=${WEBAPP_GITEA_TOKEN} - WEBAPP_WIKIJS_TOKEN=${WEBAPP_WIKIJS_TOKEN} + - DISCORD_INVITE_LINK=${DISCORD_INVITE_LINK} volumes: - ./apps/frontend:/app - /app/node_modules diff --git a/env-example b/env-example index d289378..047aa32 100644 --- a/env-example +++ b/env-example @@ -24,4 +24,5 @@ MYSQL_ROOT_PASSWORD= DB_PASSWORD= UPDATE_SECRET= DROP_PASSWORD= -WEBAPP_WIKIJS_TOKEN= \ No newline at end of file +WEBAPP_WIKIJS_TOKEN= +DISCORD_INVITE_LINK= \ No newline at end of file