"use client" import { useTranslations } from "next-intl" import { Link } from "@/i18n/navigation" import { LanguageSwitcher } from "./language-switcher" export function PublicSiteHeader() { const t = useTranslations("Layout") const navItems = [ { href: "/", label: t("nav.home") }, { href: "/about", label: t("nav.about") }, { href: "/contact", label: t("nav.contact") }, ] return (
{t("brand")}
) }