---
import { metaData } from "../config";
import { Icon } from "astro-icon/components";
import ExitToApp from '@mui/icons-material/ExitToApp';
const navItems = [
{ label: "Home", href: "/" },
{ label: "Radio", href: "/radio" },
{ 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;
---