import type { Metadata } from "next"; import { Suspense } from "react"; import Link from "next/link"; import { redirect } from "next/navigation"; import { PageHeader } from "@/components/PageHeader"; import { Section } from "@/components/Section"; import { LoginForm } from "@/components/auth/LoginForm"; import { getCurrentCustomer } from "@/lib/auth/customer"; export const dynamic = "force-dynamic"; export const metadata: Metadata = { title: "Anmelden", robots: { index: false, follow: false }, }; export default async function LoginPage() { const customer = await getCurrentCustomer(); if (customer) redirect("/konto"); return ( <> Noch kein Konto?{" "} Jetzt registrieren > ); }
Noch kein Konto?{" "} Jetzt registrieren