commerce/app/[locale]/shop-list/shops-nav.tsx
2023-08-24 01:25:52 -07:00

23 lines
609 B
TypeScript

'use client';
import { useTranslations } from 'next-intl';
import Link from 'next/link';
export default function ShopsNav() {
const t = useTranslations('Index');
return (
<div>
<div className="font-multilingual flex flex-row items-baseline space-x-6 pb-12">
<Link href="/#shops">
<span className="flex flex-row items-center space-x-1.5">
<span></span>
<span>{t('shops.all')}</span>
</span>
</Link>
<div>|</div>
<div className="font-multilingual font-medium">{t('shops.title')}</div>
</div>
</div>
);
}