mirror of
https://github.com/vercel/commerce.git
synced 2025-05-14 21:47:51 +00:00
23 lines
609 B
TypeScript
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>
|
|
);
|
|
}
|