51 lines
2.0 KiB
TypeScript
51 lines
2.0 KiB
TypeScript
import Image from 'next/image';
|
||
|
||
import { BenefitsSection } from '@/widgets/clients/ui/benefits-section';
|
||
import { ServicesOverviewSection } from '@/widgets/clients/ui/services-overview-section';
|
||
import { CtaSection } from '@/widgets/cta-section';
|
||
|
||
export const metadata = {
|
||
title: 'Клиентам | GasNetwork - Сеть заправок в Таджикистане',
|
||
description:
|
||
'Информация для клиентов: программа лояльности, топливные карты, сертификаты и способы оплаты.',
|
||
};
|
||
|
||
export default function ClientsPage() {
|
||
return (
|
||
<div className='flex min-h-screen flex-col'>
|
||
<main className='flex-1'>
|
||
{/* Hero Section */}
|
||
<section className='relative'>
|
||
<div className='relative h-[400px] w-full overflow-hidden'>
|
||
<Image
|
||
src='/placeholder.svg?height=400&width=1920&text=Для+наших+клиентов'
|
||
alt='Для наших клиентов'
|
||
width={1920}
|
||
height={400}
|
||
className='object-cover'
|
||
priority
|
||
/>
|
||
<div className='absolute inset-0 flex items-center bg-gradient-to-r from-black/70 to-black/30'>
|
||
<div className='container mx-auto'>
|
||
<div className='max-w-2xl space-y-4 text-white'>
|
||
<h1 className='text-4xl font-bold tracking-tight sm:text-5xl md:text-6xl'>
|
||
Для наших клиентов
|
||
</h1>
|
||
<p className='text-lg text-gray-200'>
|
||
Специальные предложения, программы лояльности и удобные
|
||
способы оплаты для наших клиентов
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<ServicesOverviewSection />
|
||
<BenefitsSection />
|
||
<CtaSection />
|
||
</main>
|
||
</div>
|
||
);
|
||
}
|