import { Link } from '@tanstack/react-router'; import { Button } from '@/components/ui/button'; import { useTranslation } from 'react-i18next'; import { DEFAULT_LOGGED_IN_ROUTE } from '@/lib/routes'; export function WelcomeHero() { const { t } = useTranslation(); return ( <>

{t('landing.hero.welcomeTitle')}

{t('landing.hero.welcomeDescription')}

); }