Remove unused links from navigation

Drop /start, /faq (q&a), /library, /ai and /changelog from site
navigation
This commit is contained in:
2026-03-07 22:03:54 +01:00
parent 8d92507a69
commit 45d972b0fd
-5
View File
@@ -3,19 +3,14 @@ const currentPath = Astro.url.pathname;
const links = [
{ href: "/", label: "home" },
{ href: "/start", label: "start" },
{ href: "/faq", label: "q&a" },
{ href: "/about", label: "about" },
{ href: "/projects", label: "projects" },
{ href: "/now", label: "now" },
{ href: "/uses", label: "uses" },
{ href: "/blog", label: "blog" },
{ href: "/coffee", label: "coffee" },
{ href: "/library", label: "library" },
{ href: "/links", label: "links" },
{ href: "/guestbook", label: "guestbook" },
{ href: "/ai", label: "ai" },
{ href: "/changelog", label: "changelog" },
];
function isActive(href: string, current: string): boolean {