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;