This commit is contained in:
爱喝水的木子
2026-03-13 16:28:51 +08:00
commit bfdf4843e1
38 changed files with 9490 additions and 0 deletions

19
app/login/page.tsx Normal file
View File

@@ -0,0 +1,19 @@
import LoginForm from "./login-form";
export const metadata = {
title: "登录 - Push Info"
};
export default function LoginPage() {
return (
<div className="mx-auto max-w-md rounded-2xl bg-white/90 p-8 shadow-sm ring-1 ring-slate-100">
<h1 className="text-2xl font-semibold text-slate-900"></h1>
<p className="mt-2 text-sm text-slate-600">
/ ADMIN_PASS
</p>
<div className="mt-6">
<LoginForm />
</div>
</div>
);
}