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 (
{/* Background with mesh gradient */}
{/* Subtle noise texture on header */}
{/* Animated gradient accent line at bottom */}
{/* Logo block */}
{/* KOZMOS with shimmer */} KOZMOS {/* Tagline with gradient */}
✦ {dict.header.tagline} ✦
{/* Language switcher pill */} {/* Hover glow */} {dict.langSwitch.current} · {dict.langSwitch.other}
) }