feat: add modification codes page and update routing; remove about and contact pages

This commit is contained in:
2026-04-02 10:01:18 +08:00
parent c22bc08282
commit 00215decc5
12 changed files with 237 additions and 455 deletions
+3 -7
View File
@@ -25,15 +25,11 @@ const router = createBrowserRouter(
children: [
{
index: true,
lazy: lazy(() => import("@/page/home")),
lazy: lazy(() => import("@/page/mod-codes")),
},
{
path: "about",
lazy: lazy(() => import("@/page/about")),
},
{
path: "contact",
lazy: lazy(() => import("@/page/contact")),
path: "mod-codes",
lazy: lazy(() => import("@/page/mod-codes")),
},
],
},