"use client"; import Link from "next/link"; import Image from "next/image"; import { Instagram, Facebook } from "lucide-react"; import { useTranslations } from "next-intl"; interface FooterProps { locale?: string; } export default function Footer({ locale = "sr" }: FooterProps) { const t = useTranslations("Footer"); const currentYear = new Date().getFullYear(); const localePath = `/${locale}`; const footerLinks = { shop: [ { label: t("allProducts"), href: `${localePath}/products` }, { label: t("hairCare"), href: `${localePath}/products` }, { label: t("skinCare"), href: `${localePath}/products` }, { label: t("giftSets"), href: `${localePath}/products` }, ], about: [ { label: t("ourStory"), href: `${localePath}/about` }, { label: t("process"), href: `${localePath}/about` }, { label: t("sustainability"), href: `${localePath}/about` }, ], help: [ { label: t("faq"), href: `${localePath}/contact` }, { label: t("shipping"), href: `${localePath}/contact` }, { label: t("returns"), href: `${localePath}/contact` }, { label: t("contactUs"), href: `${localePath}/contact` }, ], }; return ( ); }