From 1f754ca8a150d8bf90194e8382b693c3c3c4bb0f Mon Sep 17 00:00:00 2001 From: Demetrius Semanko Date: Sat, 25 Apr 2026 15:43:21 -0400 Subject: [PATCH] Add main Blog page, apply BaseLayout --- .../src/components/Navigation.astro | 1 + bustling-binary/src/pages/blog.astro | 30 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 bustling-binary/src/pages/blog.astro diff --git a/bustling-binary/src/components/Navigation.astro b/bustling-binary/src/components/Navigation.astro index 2206ccf..e9bbbac 100644 --- a/bustling-binary/src/components/Navigation.astro +++ b/bustling-binary/src/components/Navigation.astro @@ -2,6 +2,7 @@ const routes = { Home: "/", About: "/about/", + Blog: "/blog/", }; ---