'use client'; import { ChevronRight, Heart } from 'lucide-react'; import Image from 'next/image'; import { useLanguage } from '@/shared/language'; import { Button } from '@/shared/shadcn-ui/button'; export const CharitySection = () => { const { t } = useLanguage(); return (
Charity Foundation

{t('home.charity.title')}

{t('home.charity.description')}

{t('home.charity.directions')}

  • {t('home.charity.education')}
  • {t('home.charity.children')}
  • {t('home.charity.ecology')}
  • {t('home.charity.sports')}
); };