"use client"; import { Link as I18nLink, usePathname } from "@/i18n/routing"; import { cn } from "@/lib/utils"; import { HeaderLink } from "@/types/common"; import { ExternalLink } from "lucide-react"; import { useTranslations } from "next-intl"; const HeaderLinks = () => { const tHeader = useTranslations("Header"); const pathname = usePathname(); const headerLinks: HeaderLink[] = tHeader.raw("links"); return (