'use client'; import { useTranslations } from 'next-intl'; import Link from 'next/link'; export default function Disclosures() { const t = useTranslations('Index'); return ( <>

{t('disclosurePage.title')}

{t('disclosurePage.distributor.label')}
{t('disclosurePage.distributor.value')}
{t('disclosurePage.representative.label')}
{t('disclosurePage.representative.value')}
{t('disclosurePage.address.label')}
{t('disclosurePage.address.one')}
{t('disclosurePage.address.two')}
{t('disclosurePage.phone.label')}
{t('disclosurePage.phone.value')}
{t('disclosurePage.email.label')}
{t('disclosurePage.email.value')}
{t('disclosurePage.homepage.label')}
{t('disclosurePage.homepage.value')}
{t('disclosurePage.price.label')}
{t('disclosurePage.price.value')}
{t('disclosurePage.otherCharges.label')}
{t('disclosurePage.otherCharges.value')}
{t('disclosurePage.paymentMethod.label')}
{t('disclosurePage.paymentMethod.value')}
{t('disclosurePage.paymentPeriod.label')}
{t('disclosurePage.paymentPeriod.value')}
{t('disclosurePage.delivery.label')}
{t('disclosurePage.delivery.value')}
{t('disclosurePage.returnsAndExchanges.label')}
{t('disclosurePage.returnsAndExchanges.one')}
{t('disclosurePage.returnsAndExchanges.two')}
⇠ {t('disclosurePage.return')}
); }