"use client"; import React from "react"; import { useTranslations } from "next-intl"; import { headerMenu2 } from "@/lib/database/pathnames"; import { Link } from "@/i18n/navigation"; export const socials = [ { href: "https://www.linkedin.com/company/turkmen-expo", icon: "linkedin" }, { href: "https://www.facebook.com/profile.php?id=61567254728028", icon: "facebook", }, { href: "https://www.instagram.com/turkmenexpo_tm?igsh=bnhkOWpmNWcwcHBq", icon: "instagram", }, { href: "https://x.com/turkmenexpo?t=D-XSa8d0AC8GAv5peAzteA&s=09", icon: "x", }, ]; export const Footer = () => { const t = useTranslations(); return ( ); };