From f859194e96b4a0ec59b8e1aa4c2d08c061fa993b Mon Sep 17 00:00:00 2001 From: Latte Date: Sat, 7 Mar 2026 16:08:26 +0100 Subject: [PATCH] Add FAQ page and nav link --- docker-compose.yml | 2 - src/components/Nav.astro | 38 +++-- src/pages/faq.astro | 289 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 315 insertions(+), 14 deletions(-) create mode 100644 src/pages/faq.astro diff --git a/docker-compose.yml b/docker-compose.yml index 2f7839d..424c72a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: '3.8' - services: cozy-den: build: . diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 08f494c..efa7cce 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -4,6 +4,7 @@ const currentPath = Astro.url.pathname; const links = [ { href: "/", label: "home" }, { href: "/start", label: "start" }, + { href: "/faq", label: "q&a" }, { href: "/about", label: "about" }, { href: "/projects", label: "projects" }, { href: "/now", label: "now" }, @@ -19,18 +20,31 @@ function isActive(href: string, current: string): boolean { diff --git a/src/pages/faq.astro b/src/pages/faq.astro new file mode 100644 index 0000000..b7c2683 --- /dev/null +++ b/src/pages/faq.astro @@ -0,0 +1,289 @@ +--- +import BaseLayout from "../layouts/BaseLayout.astro"; +--- + + + + +
+
+
+

Quiet answers

+

Q&A

+
==============================
+

+ A few short answers for anyone wondering what Cozy Den is, + why it exists, and what kind of space it is trying to be. +

+
+ +
+

Questions and answers

+ +
+
+

What is Cozy Den?

+

+ Cozy Den is a personal website and quiet corner of + the web. It is part writing space, part workshop, + and part home for ideas about self-hosting, + privacy, infrastructure, and building things with + care. +

+
+ +
+

+ Why build a personal website instead of using social + media? +

+

+ Social platforms are useful for discovery, but they + are not good homes. A personal site is calmer, more + durable, and shaped by the person making it instead + of by feeds, algorithms, or platform incentives. +

+
+ +
+

What does privacy-first mean for this site?

+

+ It means the site tries to ask for as little as + possible. No trackers, no ads, no unnecessary + external scripts, and no design choices built around + surveillance. Visitors are guests here, not data to + be collected. +

+
+ +
+

Who is behind Hidden Den?

+

+ Hidden Den is built by Latte: a gay furry developer, + homelab enthusiast, and privacy-minded internet + dweller who still believes personal websites should + feel warm, human, and fully their own. +

+
+
+
+ +
+
+

+ If the short version helps: Cozy Den exists to be a + small, thoughtful place on the internet that belongs to + the person building it. +

+
+
+ +
+

Made with love by Latte

+
+
+
+
+ + -- 2.52.0