'use client'; import Image from 'next/image'; import { Container } from '@/shared/components/container'; import { useTextController } from '@/shared/language/hooks/use-text-controller'; import { useMediaController } from '@/shared/media/hooks/use-media-controller'; import { BenefitsSection } from '@/widgets/clients/ui/benefits-section'; import { ServicesOverviewSection } from '@/widgets/clients/ui/services-overview-section'; import { CtaSection } from '@/widgets/cta-section'; export function ClientsPage() { const { t } = useTextController(); const { m } = useMediaController(); return (
{/* Hero Section */}
Для наших клиентов

{t('clients.title')}

{t('clients.description')}

); }