feat/finishing-touch #59

Merged
Latte merged 3 commits from feat/finishing-touch into dev 2026-03-08 09:32:55 +00:00
Showing only changes of commit 45d972b0fd - Show all commits
-5
View File
@@ -3,19 +3,14 @@ const currentPath = Astro.url.pathname;
const links = [ const links = [
{ href: "/", label: "home" }, { href: "/", label: "home" },
{ href: "/start", label: "start" },
{ href: "/faq", label: "q&a" },
{ href: "/about", label: "about" }, { href: "/about", label: "about" },
{ href: "/projects", label: "projects" }, { href: "/projects", label: "projects" },
{ href: "/now", label: "now" }, { href: "/now", label: "now" },
{ href: "/uses", label: "uses" }, { href: "/uses", label: "uses" },
{ href: "/blog", label: "blog" }, { href: "/blog", label: "blog" },
{ href: "/coffee", label: "coffee" }, { href: "/coffee", label: "coffee" },
{ href: "/library", label: "library" },
{ href: "/links", label: "links" }, { href: "/links", label: "links" },
{ href: "/guestbook", label: "guestbook" }, { href: "/guestbook", label: "guestbook" },
{ href: "/ai", label: "ai" },
{ href: "/changelog", label: "changelog" },
]; ];
function isActive(href: string, current: string): boolean { function isActive(href: string, current: string): boolean {