From 373f081a6b6568f4288cdabe9ff4f7d07e6d6bcd Mon Sep 17 00:00:00 2001 From: codey Date: Thu, 24 Jul 2025 10:35:43 -0400 Subject: [PATCH] fucking shitty nav --- src/layouts/Nav.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/Nav.astro b/src/layouts/Nav.astro index b628364..206eee4 100644 --- a/src/layouts/Nav.astro +++ b/src/layouts/Nav.astro @@ -6,10 +6,10 @@ import ExitToApp from '@mui/icons-material/ExitToApp'; const navItems = [ { label: "Home", href: "/" }, { label: "Radio", href: "/radio" }, + { label: "Memes", href: "/memes" }, { blockSeparator: true }, { label: "Status", href: "https://status.boatson.boats", icon: ExitToApp }, { label: "Git", href: "https://kode.boatson.boats", icon: ExitToApp }, - { label: "Old Site", href: "https://old.codey.lol", icon: ExitToApp }, ]; const currentPath = Astro.url.pathname;