"use client"; import React from "react"; import Link from "next/link"; import { footerInfo, headerMenu2 } from "@/lib/database/pathnames"; import { useAppSelector } from "@/redux/hooks"; import clsx from "clsx"; 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 localization = useAppSelector( (state) => state.headerSlice.activeLang.localization ); return ( ); };