From ec700e5ebda1e94109ffa15c14f616b63288e08c Mon Sep 17 00:00:00 2001 From: Darius Cepulis Date: Tue, 18 Nov 2025 09:23:57 -0600 Subject: [PATCH] feat(site): add blog to navigation --- site/src/components/Footer.astro | 2 +- site/src/components/NavBar/NavBar.astro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/src/components/Footer.astro b/site/src/components/Footer.astro index b5b72bac..0bd43658 100644 --- a/site/src/components/Footer.astro +++ b/site/src/components/Footer.astro @@ -13,7 +13,7 @@ type NavLink = { const navLinks: NavLink[] = [ { href: '/', label: 'Home' }, { href: '/docs', label: 'Docs' }, - // { href: '/blog', label: 'Blog' }, + { href: '/blog', label: 'Blog' }, { href: '/privacy', label: 'Privacy' }, ]; diff --git a/site/src/components/NavBar/NavBar.astro b/site/src/components/NavBar/NavBar.astro index 46eb9dd4..b4a59d21 100644 --- a/site/src/components/NavBar/NavBar.astro +++ b/site/src/components/NavBar/NavBar.astro @@ -20,7 +20,7 @@ type NavLink = { }; const navLinks: NavLink[] = [ { href: '/docs', label: 'Docs', matchPath: '/docs' }, - // { href: '/blog', label: 'Blog', matchPath: '/blog' }, + { href: '/blog', label: 'Blog', matchPath: '/blog' }, ]; const currentPath = Astro.url.pathname;