'use client'; import AppImage from '@/components/ui/AppImage'; import { useTranslation } from '@/hooks/useTranslation'; import { PAGE_IMAGES } from '@/infrastructure/images'; export default function AboutIntro() { const { t } = useTranslation(); const stats = [ { value: t('aboutPreview.statHalal'), label: t('aboutPreview.statHalalLabel') }, { value: t('aboutPreview.statDays'), label: t('aboutPreview.statDaysLabel') }, { value: t('aboutPreview.statDelivery'), label: t('aboutPreview.statDeliveryLabel') }, { value: t('aboutPreview.statFresh'), label: t('aboutPreview.statFreshLabel') }, ]; return (
{t('aboutPreview.label')}

{t('aboutPreview.title')}

{t('aboutPreview.p1')}

{t('aboutPreview.p2')}

{t('aboutPreview.p3')}

{stats.map((stat) => (

{stat.value}

{stat.label}

))}
); }