feat(site): add blog to navigation

This commit is contained in:
Darius Cepulis
2025-11-18 09:23:57 -06:00
parent 8f20e3b7f3
commit ec700e5ebd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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' },
];
+1 -1
View File
@@ -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;