From 8b810b746b101164f385c2f7b7230191e0394b22 Mon Sep 17 00:00:00 2001 From: Latte Date: Sat, 7 Mar 2026 16:23:14 +0100 Subject: [PATCH] Add changelog link to navigation --- src/components/Nav.astro | 1 + src/pages/changelog.astro | 313 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 314 insertions(+) create mode 100644 src/pages/changelog.astro diff --git a/src/components/Nav.astro b/src/components/Nav.astro index efa7cce..1619875 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -10,6 +10,7 @@ const links = [ { href: "/now", label: "now" }, { href: "/uses", label: "uses" }, { href: "/blog", label: "blog" }, + { href: "/changelog", label: "changelog" }, ]; function isActive(href: string, current: string): boolean { diff --git a/src/pages/changelog.astro b/src/pages/changelog.astro new file mode 100644 index 0000000..8a1ba0c --- /dev/null +++ b/src/pages/changelog.astro @@ -0,0 +1,313 @@ +--- +import BaseLayout from "../layouts/BaseLayout.astro"; + +const changelogEntries = [ + { + date: "2026-03-07", + changes: [ + "Added this changelog page as a quiet logbook for how the den grows.", + "Published Coffee & Code #1 and added series support to the blog.", + "Published Things I Learned From Loving Deeply.", + "Added a Q&A page for the site's philosophy and tone.", + "Expanded the About page and added a gentler Start page for new visitors.", + ], + }, + { + date: "2026-03-06", + changes: [ + "Added the Now page as a living snapshot of current focus.", + "Added a Uses page for the tools, systems, and infrastructure behind the site.", + "Refined navigation and layout behavior to support a growing set of pages.", + ], + }, + { + date: "2026-03-04", + changes: [ + "Published After the Silence.", + "Polished the homepage avatar and project card interactions.", + "Added dedicated About and Projects pages, along with some nginx hardening.", + ], + }, + { + date: "2026-03-01", + changes: [ + "Published Welcome to the Den and Love Without Access.", + "Expanded the homepage with socials, age, and cryptographic keys.", + "Added repository workflows and supporting site infrastructure.", + ], + }, + { + date: "2026-01-03", + changes: [ + "Reshaped the site into a more personal page with a warmer identity.", + "Moved the project further away from a placeholder site and closer to Hidden Den as an actual home.", + ], + }, + { + date: "2025-12-23", + changes: [ + "Started the Astro-based site with Docker deployment in mind.", + "Set up the first pieces of the den: project structure, documentation, and hosting groundwork.", + ], + }, +]; +--- + + + + +
+
+
+

Changelog

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

+ This page keeps a quiet record of changes to the site. New + pages, new writing, design shifts, structural cleanup, and + the slow work of making the den feel more lived in all land + here. +

+
+ +
+

Changelog entries

+
    + { + changelogEntries.map((entry) => ( +
  1. + +
    +
      + {entry.changes.map((change) => ( +
    • {change}
    • + ))} +
    +
    +
  2. + )) + } +
+
+ +
+

+ The goal is not to announce polished releases. It is simply + to leave a trail showing how this place changes over time. +

+
+ +
+

Made with love by Latte

+
+
+
+
+ +