mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
small fixes
This commit is contained in:
@@ -17,8 +17,8 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
return (
|
||||
<div className="w-full px-6">
|
||||
<div className="font-multilingual flex w-full flex-col items-center space-y-px pb-24 text-center font-extralight md:pb-48">
|
||||
<h1 className="text-6xl">{t('about.001.title')}</h1>
|
||||
<h1 className="text-6xl">{t('about.001.subtitle')}</h1>
|
||||
<h1 className="text-5xl leading-tight md:text-6xl">{t('about.001.title')}</h1>
|
||||
<h1 className="text-5xl leading-tight md:text-6xl">{t('about.001.subtitle')}</h1>
|
||||
</div>
|
||||
|
||||
<div className="relative mx-auto max-w-screen-2xl">
|
||||
@@ -26,7 +26,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
src={AboutImage001}
|
||||
priority={true}
|
||||
alt="A picture of the exterior of the brewery building."
|
||||
className={clsx('h-full w-full object-cover')}
|
||||
className={clsx('aspect-square h-full w-full object-cover md:aspect-auto')}
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@@ -34,7 +34,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
'font-multilingual mx-auto flex w-full max-w-3xl flex-col space-y-12 py-24 text-left font-extralight md:py-48'
|
||||
)}
|
||||
>
|
||||
<h2 className="text-5xl">{t('about.002.title')}</h2>
|
||||
<h2 className="text-3xl leading-tight md:text-5xl">{t('about.002.title')}</h2>
|
||||
<p className="text-base leading-loose">{t('about.002.para001')}</p>
|
||||
<p className="text-base leading-loose">{t('about.002.para002')}</p>
|
||||
</div>
|
||||
@@ -44,7 +44,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
src={AboutImage002}
|
||||
priority={true}
|
||||
alt="A picture of the interior of the brewery building."
|
||||
className={clsx('h-full w-full object-cover')}
|
||||
className={clsx('aspect-square h-full w-full object-cover md:aspect-auto')}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -53,7 +53,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
'font-multilingual mx-auto flex w-full max-w-3xl flex-col space-y-12 py-24 text-left font-extralight md:py-48'
|
||||
)}
|
||||
>
|
||||
<h2 className="text-5xl">{t('about.003.title')}</h2>
|
||||
<h2 className="text-3xl leading-tight md:text-5xl">{t('about.003.title')}</h2>
|
||||
<p className="text-base leading-loose">{t('about.003.para001')}</p>
|
||||
<div>
|
||||
<div className="relative flex flex-row justify-end pb-6">
|
||||
@@ -76,7 +76,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
'font-multilingual mx-auto flex w-full max-w-screen-xl flex-col space-y-12 py-24 text-left font-extralight md:py-48'
|
||||
)}
|
||||
>
|
||||
<div className="font-multilingual flex flex-row items-baseline space-x-4">
|
||||
<div className="font-multilingual flex flex-col items-baseline space-y-0 md:flex-row md:space-x-4">
|
||||
<h2 className="text-5xl">{t('about.awards.title')}</h2>
|
||||
<h3 className="text-xl font-extralight">{t('about.awards.subtitle')}</h3>
|
||||
</div>
|
||||
@@ -104,7 +104,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
src={AboutImage003}
|
||||
priority={true}
|
||||
alt="A picture of the exterior of the brewery building."
|
||||
className={clsx('h-full w-full object-cover')}
|
||||
className={clsx('aspect-square h-full w-full object-cover md:aspect-auto')}
|
||||
/>
|
||||
|
||||
<div className="font-multilingual flex flex-col space-y-12 font-extralight md:flex-row md:space-x-6 md:space-y-0">
|
||||
@@ -127,7 +127,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
src={AboutImage004}
|
||||
priority={true}
|
||||
alt="A picture of the rice fields and mountains of Nagano."
|
||||
className={clsx('h-full w-full object-cover')}
|
||||
className={clsx('aspect-square h-full w-full object-cover md:aspect-auto')}
|
||||
/>
|
||||
|
||||
<div className="font-multilingual flex flex-col space-y-12 font-extralight md:flex-row md:space-x-6 md:space-y-0">
|
||||
@@ -150,7 +150,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
src={AboutImage005}
|
||||
priority={true}
|
||||
alt="A picture of the interior of the brewery."
|
||||
className={clsx('h-full w-full object-cover')}
|
||||
className={clsx('aspect-square h-full w-full object-cover md:aspect-auto')}
|
||||
/>
|
||||
|
||||
<div className="font-multilingual flex flex-col space-y-12 font-extralight md:flex-row md:space-x-6 md:space-y-0">
|
||||
@@ -182,7 +182,7 @@ export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||
src={AboutImage006}
|
||||
priority={true}
|
||||
alt="A picture of Irie-san."
|
||||
className={clsx('h-full w-full object-cover')}
|
||||
className={clsx('aspect-square h-full w-full object-cover md:aspect-auto')}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -60,7 +60,7 @@ export default async function HomePage({
|
||||
<div className="pt-12 md:pt-48">
|
||||
<HomepageProducts lang={locale} />
|
||||
</div>
|
||||
<div className="py-48">
|
||||
<div className="py-24 md:py-48">
|
||||
<NewsletterSignup />
|
||||
</div>
|
||||
<div className="relative mx-auto max-w-screen-xl">
|
||||
|
Reference in New Issue
Block a user