'use client'; import { ContactForm } from '@/components/ui/ContactForm'; import { Newsletter } from '@/components/ui/Newsletter'; import { Section } from '@/components/ui/Section'; import { Heading, Text } from '@/components/ui/Typography'; import { useTranslation } from '@/lib/hooks/useTranslation'; import { container } from '@/lib/utils'; import Image from 'next/image'; export function AboutPageContent() { const { t } = useTranslation(); return (
{/* About Us Header Section */}
{t('about.title')} {t('about.description')}
{t('about.title')}
{/* Contact Form Section */}
{/* Top wave */}
{/* Main content with yellow background */}
{t('about.contactForm.title')}
{/* Newsletter Section */}
{/* Top wave that overlaps with yellow section */}
{/* Main content with pink background */}
); }