15 lines
519 B
TypeScript
15 lines
519 B
TypeScript
import { AdminGate, AdminPageShell } from "@/components/admin/gate";
|
|
import { OverviewPanel } from "@/components/admin/overview";
|
|
|
|
export const metadata = { title: "管理后台" };
|
|
|
|
export default function AdminIndexPage() {
|
|
return (
|
|
<AdminGate>
|
|
<AdminPageShell eyebrow="Operations" title="管理概览" description="查看用户规模、TTS 任务状态与额度流水,全量管理入口在你获得管理员会话后可用。">
|
|
<OverviewPanel />
|
|
</AdminPageShell>
|
|
</AdminGate>
|
|
);
|
|
}
|