'use client'; import { Gift } from 'lucide-react'; import PromotionSlider from '@/shared/components/promotion-slider'; import { useLanguage } from '@/shared/language'; export const PromotionsSection = () => { const { t } = useLanguage(); return (

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

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

); };