'use client'; import images from '@/assets/images/images'; import Image from 'next/image'; import Link from 'next/link'; import FooterMenuBuilder from './FooterMenuBuilder'; import FooterMenuBuilderWrapper from './FooterMenuBuilderWrapper'; import FooterInfo from './FooterInfo'; import { useTranslations } from 'next-intl'; import { useParams } from 'next/navigation'; import { getQuickLinks } from '@/assets/constants/footerMenu/quickLinks.const'; import { getWhoAreWeLinks } from '@/assets/constants/footerMenu/whoAreWe.const'; import { TLocales } from '@/models/layout'; export default function Footer() { const t = useTranslations(); const params = useParams(); const locale = (params.locale as TLocales) || 'en'; const quickLinks = getQuickLinks(t, locale); const whoAreWeLinks = getWhoAreWeLinks(t, locale); return (
footer-bg

{t('footer_title')}

{t('footer_description')}
+98 12345678 info@sample.com {t('footer_links_address')}

{t('footer_copyright')}

); }