feat: unlock test page

This commit is contained in:
wonfen
2025-03-16 12:15:35 +08:00
parent e16b23946a
commit f4cb978118
11 changed files with 7698 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ import SettingsPage from "./settings";
import ConnectionsPage from "./connections";
import RulesPage from "./rules";
import HomePage from "./home";
import UnlockPage from "./unlock";
import { BaseErrorBoundary } from "@/components/base";
import ProxiesSvg from "@/assets/image/itemicon/proxies.svg?react";
@@ -22,6 +23,7 @@ import SubjectRoundedIcon from "@mui/icons-material/SubjectRounded";
import WifiTetheringRoundedIcon from "@mui/icons-material/WifiTetheringRounded";
import SettingsRoundedIcon from "@mui/icons-material/SettingsRounded";
import HomeRoundedIcon from "@mui/icons-material/HomeRounded";
import LockOpenRoundedIcon from "@mui/icons-material/LockOpenRounded";
export const routers = [
{
@@ -60,6 +62,12 @@ export const routers = [
icon: [<SubjectRoundedIcon />, <LogsSvg />],
element: <LogsPage />,
},
{
label: "Label-Unlock",
path: "/unlock",
icon: [<LockOpenRoundedIcon />],
element: <UnlockPage />,
},
{
label: "Label-Settings",
path: "/settings",