feat(admin, i18n): enhance reports, draws, config, and player workflows

This commit is contained in:
2026-06-08 17:41:55 +08:00
parent af982bb9f7
commit 7e65c53732
55 changed files with 1986 additions and 804 deletions

View File

@@ -1,13 +1,9 @@
import type { ReactNode } from "react";
import { ModuleScaffold } from "@/components/admin/module-scaffold";
import { ReportsSubnav } from "@/modules/reports/reports-subnav";
export default function AdminReportsLayout({ children }: { children: ReactNode }) {
return (
<ModuleScaffold>
<div className="sticky top-14 z-20 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/80">
<ReportsSubnav />
</div>
{children}
</ModuleScaffold>
);