import Link from 'next/link'; import { LoginForm } from '@/components/auth/LoginForm'; import { getAppConfig } from '@/lib/app-config'; export default async function LoginPage() { const config = await getAppConfig(); return (

🏓 {config.clubName}

{config.appDescription}

Don't have an account? Sign up
); }