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