'use client'; import clsx from 'clsx'; import Prose from 'components/prose'; import { useTranslations } from 'next-intl'; import Image from 'next/image'; import AboutImage001 from './images/about-image-001.webp'; import AboutImage002 from './images/about-image-002.webp'; import AboutImage003 from './images/about-image-003.webp'; import AboutImage004 from './images/about-image-004.webp'; import AboutImage005 from './images/about-image-005.webp'; import AboutImage006 from './images/about-image-006.webp'; import IrieSignature from './images/irie-signature.webp'; export default function AboutNaraiDetail({ awards }: { awards: string }) { const t = useTranslations('Index'); return (

{t('about.001.title')}

{t('about.001.subtitle')}

A picture of the exterior of the brewery building.

{t('about.002.title')}

{t('about.002.para001')}

{t('about.002.para002')}

A picture of the interior of the brewery building.

{t('about.003.title')}

{t('about.003.para001')}

Irie Signature
{t('about.003.master001')}
{t('about.003.master002')}
{!!awards && (

{t('about.awards.title')}

{t('about.awards.subtitle')}

)}

{t('about.materials.title')}

A picture of the exterior of the brewery building.

{t('about.materials.water.title')}

{t('about.materials.water.body')}

A picture of the rice fields and mountains of Nagano.

{t('about.materials.rice.title')}

{t('about.materials.rice.body')}

A picture of the interior of the brewery.

{t('about.materials.koji.title')}

{t('about.materials.koji.body')}

{t('about.irie.title')}

{t('about.irie.body')}

A picture of Irie-san.
); }