125b0e1339
admin 后台 P0 + 配置后台化:登录/大盘/用户(360+封号+调金币)/提现(重试+对账)/反馈/管理员/审计/系统配置;对接 shaguabijia-app-server 的 admin API(独立 JWT + RBAC + 审计)。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
442 B
TypeScript
18 lines
442 B
TypeScript
import type { Metadata } from 'next';
|
|
import { Providers } from './providers';
|
|
|
|
export const metadata: Metadata = {
|
|
title: '傻瓜比价 · 运营后台',
|
|
description: '傻瓜比价 App 运营管理后台',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body style={{ margin: 0 }}>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|