2026-09-08 09:20:15 +00:00
|
|
|
|
import Link from "next/link";
|
|
|
|
|
|
import { AuthForm } from "@/components/auth-form";
|
|
|
|
|
|
|
|
|
|
|
|
export const metadata = { title: "注册" };
|
|
|
|
|
|
|
|
|
|
|
|
export default function RegisterPage() {
|
2026-09-11 07:19:59 +00:00
|
|
|
|
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 eyebrow-cyan">Create account</p><h1 className="mt-5 text-4xl font-semibold tracking-[-0.05em]">建立你的账户。</h1><p className="mt-3 text-sm text-muted">注册服务已上线,邮箱验证已启用,手机验证将在渠道接入后启用。</p></div><AuthForm mode="register" /><Link className="mt-6 text-sm text-muted hover:text-copy" href="/">返回首页</Link></div>;
|
2026-09-08 09:20:15 +00:00
|
|
|
|
}
|