import { Poppins } from 'next/font/google' import { getScopedI18n } from '@/locales/server' import { cn, env } from '@/lib/utils' import { Button } from '@/components/ui/button' import LoginButton from '@/components/auth/login-button' const font = Poppins({ subsets: ['latin'], weight: ['600'], }) export default async function Home () { const t = await getScopedI18n('auth') return (

🔐 {t('title')}

{t('subtitle')}

) }