'use client'; import { ChevronRightIcon } from '@heroicons/react/24/outline'; import { useTranslations } from 'next-intl'; import Link from 'next/link'; export default function Shoplist() { const t = useTranslations('Index'); return (

shop list

{t('shops.subtitle')}

{t('shops.hokkaido')}
{t('shops.kanto')}
{t('shops.chubu')}
{t('shops.kinki')}
{t('shops.chugoku')}
{t('shops.kyushu')}
); }