import { Link } from '@tanstack/react-router'; import { Button } from '@/components/ui/button'; import { useTranslation } from 'react-i18next'; import { Route as LoginRoute } from '@/routes/auth/login'; import { Route as SignupRoute } from '@/routes/auth/signup'; export function AuthHero() { const { t } = useTranslation('landing'); return ( <>

{t('hero.title')}

{t('hero.description')}

); }