chore(website): hide blog

This commit is contained in:
Darius Cepulis
2025-10-27 13:13:04 -05:00
parent 47ac22e9b8
commit 0aacd58c3f
4 changed files with 5 additions and 2 deletions
+1
View File
@@ -9,3 +9,4 @@ not comprehensive. just the things I'm worried about forgetting
- docs features
- copy code blocks
- search
- update docs following dev
+2
View File
@@ -0,0 +1,2 @@
User-agent: *
Disallow: /blog/
+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
@@ -18,7 +18,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;