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

🔐 {t('title')}

{t('subtitle')}

) }