17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
import { Suspense } from "react";
|
|
import { LoginForm } from "@/components/login-form";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<section className="section">
|
|
<div className="container">
|
|
<h1>Anmelden</h1>
|
|
<p className="muted">Entwicklung: Demo-Zugänge siehe docs/PLAN.md</p>
|
|
<Suspense fallback={<p className="muted">Laden…</p>}>
|
|
<LoginForm />
|
|
</Suspense>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|