'use client'; import { useLanguage } from '@/shared/language'; import { Button } from '@/shared/shadcn-ui/button'; export const CtaSection = () => { const { t } = useLanguage(); return (

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

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

); };