{navLinks.map((link) => {
// Hash links (e.g. /en/#features) never appear in pathname,
// so they are deliberately excluded from active highlighting
const isActive =
!link.href.includes("#") &&
(pathname === link.href ||
pathname.startsWith(link.href + "/"));
return (
{link.label}
{isActive && (
)}
);
})}
{/* Contact CTA — sits right next to About */}
{dict.nav.contact}
{/* Right side: lang + IP — desktop */}