feat: 增加角色管理与奖池配置迁移,优化管理端权限与样式
This commit is contained in:
20
src/app/admin/(shell)/config/jackpot/page.tsx
Normal file
20
src/app/admin/(shell)/config/jackpot/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import { JackpotSubNav } from "@/modules/jackpot/jackpot-subnav";
|
||||
import { JackpotPoolsConsole } from "@/modules/jackpot/jackpot-pools-console";
|
||||
import { jackpotModuleMeta } from "@/modules/jackpot/meta";
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: `奖池配置 · ${jackpotModuleMeta.title}`,
|
||||
};
|
||||
|
||||
export default function AdminConfigJackpotPage() {
|
||||
return (
|
||||
<div className="w-full max-w-none px-1">
|
||||
<JackpotSubNav />
|
||||
<div className="mx-auto mb-6 max-w-5xl">
|
||||
<h1 className="text-lg font-semibold tracking-tight">{jackpotModuleMeta.title}</h1>
|
||||
</div>
|
||||
<JackpotPoolsConsole />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user