"use client"; import { useTranslations } from "next-intl"; import Link from "next/link"; export function Header() { const t = useTranslations("header") const header = [ {"name": t("whoami"), "id": "whoami"}, {"name": t("skills"), "id": "skills"}, {"name": t("projects"), "id": "projects"}, ] return (

{t("name")}

{header.map((link, index) => (

{link.name}

))}

{t("contact")}

); }