feat:初始化业务目录

This commit is contained in:
2026-05-09 10:36:20 +08:00
parent 881506655d
commit 56951c0383
60 changed files with 6955 additions and 184 deletions

9
src/app/admin/layout.tsx Normal file
View File

@@ -0,0 +1,9 @@
import type { ReactNode } from "react";
export default function AdminSegmentLayout({
children,
}: {
children: ReactNode;
}) {
return <div className="flex min-h-full flex-1 flex-col">{children}</div>;
}