import Aku from "../assets/images/aku.png"; export default function Header({ theme }) { const { theme: currentTheme, toggleTheme } = theme; const navItems = [ { label: "Nextcloud", url: "https://aramjonghu.nl/nextcloud" }, { label: "Navidrome", url: "https://music.aramjonghu.nl" }, { label: "Forgejo Git", url: "https://git.aramjonghu.nl" }, { label: "Stream", url: "/stream" }, { label: "SearXNG", url: "https://xng.aramjonghu.nl" }, { label: "Gitea zach-dev", url: "https://git.zach-dev.cc" }, ]; const goHome = () => { window.location.href = "/"; }; return (
Home
); }