This commit is contained in:
2026-02-11 22:30:04 +09:00
parent be1f627457
commit 30835f78d4
75 changed files with 4878 additions and 143 deletions

14
src/pagesBackup/_app.tsx Normal file
View File

@@ -0,0 +1,14 @@
import MainLayout from "@/components/Layout/MainLayout";
import { buildNestedMenu } from "@/lib/menu";
import "@/styles/globals.css";
import type { AppProps } from "next/app";
export default function App({ Component, pageProps }: AppProps) {
return (
<MainLayout>
<Component {...pageProps} />
</MainLayout>
)
}