import React from 'react'; import Link from 'next/link'; import { useTranslations } from 'next-intl'; import { Container } from '@/components/ui'; import Scribble from '@/components/Scribble'; export default function Hero() { const t = useTranslations('Home.hero'); return (

{t.rich('title', { green: (chunks) => ( {chunks} ) })}

{t('cta')}
); }