'use client'; import { ChevronRight, Heart } from 'lucide-react'; import Image from 'next/image'; import Link from 'next/link'; import { Container } from '@/shared/components/container'; import { useTextController } from '@/shared/language/hooks/use-text-controller'; import { Button } from '@/shared/shadcn-ui/button'; export const CharitySection = () => { const { t } = useTextController(); 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')}
); };