www_site/app/login/page.tsx

9 lines
647 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from "next/link";
import { AuthForm } from "@/components/auth-form";
export const metadata = { title: "登录" };
export default function LoginPage() {
return <div className="container-shell flex min-h-[680px] flex-col items-center justify-center py-16"><div className="mb-8 text-center"><p className="eyebrow">Account</p><h1 className="mt-5 text-4xl font-semibold tracking-[-0.05em]"></h1><p className="mt-3 text-sm text-muted"> AI Lab 使</p></div><AuthForm mode="login" /><Link className="mt-6 text-sm text-muted hover:text-copy" href="/"></Link></div>;
}