更新登录页面和帮助教程

This commit is contained in:
Eamon
2026-08-07 16:54:21 +08:00
parent 038e66d0cc
commit 4c9953ab57
22 changed files with 1278 additions and 133 deletions

View File

@@ -3,6 +3,8 @@ import Channels from "@/admin/channels/page"
import Dashboard from "@/admin/dashboard/page"
import Funds from "@/admin/funds/page"
import AdminLayout from "@/admin/layout"
import LongPage from "@/admin/product/long"
import ShortPage from "@/admin/product/short"
import Whitelist from "@/admin/whitelist/page"
import AuthGuard from "@/components/authGuard"
import HomePage from "@/home"
@@ -42,9 +44,13 @@ export const router = createBrowserRouter([
{ path: "channels", element: <Channels /> },
{ path: "whitelist", element: <Whitelist /> },
{ path: "funds", element: <Funds /> },
{ path: "Channels", element: <Channels /> },
{ path: "Channels", element: <Channels /> },
{ path: "Channels", element: <Channels /> },
{
path: "product",
children: [
{ path: "long", element: <LongPage /> },
{ path: "short", element: <ShortPage /> },
],
},
],
},
])