feat: add about page

This commit is contained in:
ReaJason
2025-08-13 23:53:40 +08:00
parent e1e5a96283
commit 4ab08270d3
6 changed files with 413 additions and 96 deletions
+5
View File
@@ -4,6 +4,7 @@ import { env } from "@/config";
import MemShellPage from "@/pages/memshell";
import ProbeShellPage from "@/pages/probeshell";
import type { MemShellFormSchema } from "@/types/schema";
import AboutPage from "@/pages/about";
// Function to parse URL parameters into form default values
const parseUrlParams = (
@@ -89,6 +90,10 @@ export const router = createHashRouter(
path: "probeshell",
element: <ProbeShellPage />,
},
{
path: "about",
element: <AboutPage />,
},
],
},
],