www_site/app/admin/users/page.tsx

8 lines
1.4 KiB
TypeScript
Raw Normal View History

import { PreviewNotice, StatusCard } from "@/components/ui";
export const metadata = { title: "用户管理" };
export default function AdminUsersPage() {
return <div className="container-shell py-16 sm:py-24"><p className="eyebrow">Admin / Users</p><h1 className="mt-5 text-4xl font-semibold tracking-[-0.05em]"></h1><p className="mt-4 max-w-xl text-muted">Phase 4 </p><div className="mt-8"><PreviewNotice>VIP </PreviewNotice></div><div className="mt-8 grid gap-5 md:grid-cols-3"><StatusCard title="用户总数" description="待 API 接入" /><StatusCard title="VIP 用户" description="待会员服务接入" tone="info" /><StatusCard title="待处理" description="无可核实数据" tone="warning" /></div><div className="mt-8 overflow-hidden rounded-2xl border border-line bg-panel/50"><div className="flex flex-col gap-4 border-b border-line p-5 sm:flex-row"><input aria-label="按邮箱筛选" className="field-input sm:max-w-sm" disabled placeholder="按邮箱筛选(待接入)" /><button className="button-ghost sm:ml-auto" disabled type="button"></button></div><div className="p-10 text-center text-sm text-muted"> API </div></div></div>;
}