import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { LoginFormClient } from "./login-form-client"; export const metadata = { title: "Sign in", }; interface PageProps { searchParams: Promise<{ next?: string }>; } export default async function LoginPage({ searchParams }: PageProps) { const sp = await searchParams; const next = sp.next ?? "/"; return (
Sign in
); }