oriyo_next/src/widgets/cta-section.tsx
2025-05-03 02:15:50 +03:00

28 lines
831 B
TypeScript

'use client';
import Link from 'next/link';
import { Container } from '@/shared/components/container';
import { useTextController } from '@/shared/language/hooks/use-text-controller';
import { Button } from '@/shared/shadcn-ui/button';
export const CtaSection = () => {
const { t } = useTextController();
return (
<section className='bg-red-600 text-white'>
<Container>
<div className='flex flex-col items-center text-center'>
<h2 className='mb-4 text-3xl font-bold tracking-tight sm:text-4xl'>
{t('home.cta.title')}
</h2>
<p className='mb-8 max-w-2xl'>{t('home.cta.description')}</p>
<h4 className='text-xl font-bold'>
{t('common.buttons.purchaseCardAtGasStations')}
</h4>
</div>
</Container>
</section>
);
};