'use client'; import Link from 'next/link'; import { useTextController } from '@/shared/language/hooks/use-text-controller'; import { Button } from '@/shared/shadcn-ui/button'; export const CtaSection = () => { const { t } = useTextController(); return (

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

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

); };