import { Button, Link as NextUiLink } from '@heroui/react'; import { MoveUpRight } from 'lucide-react'; import { useTranslations } from 'next-intl'; import { title, subtitle } from '@/components/primitives'; import { LocaleCodeType } from '@/types/locale'; import ClientLink from '@/components/ClientLink'; type Props = { locale: LocaleCodeType; }; export default function MainTitle({ locale }: Props) { const t = useTranslations('Index'); return (