--- 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" }, { label: "Memes", href: "/memes" }, { blockSeparator: true }, { label: "Status", href: "https://status.boatson.boats", icon: ExitToApp }, { label: "Git", href: "https://kode.boatson.boats", icon: ExitToApp }, ]; const currentPath = Astro.url.pathname; ---