import { Download, Mail, Phone, Send } from "lucide-react"; import { useTranslations } from "next-intl"; const downloadCatalog = () => { const link = document.createElement("a"); link.href = "/catalog.pdf"; link.download = "catalog.pdf"; document.body.appendChild(link); link.click(); document.body.removeChild(link); }; export default function UpHeader() { const t = useTranslations(); return (

{t("navbar.connect")}:

); }