import Link from 'next/link' type Dict = { header: { tagline: string } langSwitch: { current: string; other: string; otherHref: string } } export default function Header({ dict }: { dict: Dict }) { return (
{/* Thin teal accent line at bottom */}
{/* Logo */}
KOZMOS {dict.header.tagline}
{/* Language switcher */} {dict.langSwitch.current} ยท {dict.langSwitch.other}
) }