'use client'; import { Gift } from 'lucide-react'; import { Discounts } from '@/app/api-utlities/@types/main'; import PromotionSlider from '@/shared/components/promotion-slider'; import { useTextController } from '@/shared/language/hooks/use-text-controller'; interface PromotionsSectionProps { discounts: Discounts; } export const PromotionsSection = ({ discounts }: PromotionsSectionProps) => { const { t } = useTextController(); return (

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

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

); };