'use client'; import { useTranslations } from 'next-intl'; import Link from 'next/link'; export default function ShopsNav() { const t = useTranslations('Index'); return (
{t('shops.title')}
|
{t('company.name.value')}
); }