diff --git a/apps/web/src/routes/index.tsx b/apps/web/src/routes/index.tsx
index b15e51d..0899fd2 100755
--- a/apps/web/src/routes/index.tsx
+++ b/apps/web/src/routes/index.tsx
@@ -22,6 +22,8 @@ import PathEditorPage from "../app/main/path/editor/page";
import { CoursePreview } from "../app/main/course/preview/page";
import MyLearningPage from "../app/main/my-learning/page";
import MyDutyPage from "../app/main/my-duty/page";
+import MyPathPage from "../app/main/my-path/page";
+import SearchPage from "../app/main/search/page";
interface CustomIndexRouteObject extends IndexRouteObject {
name?: string;
breadcrumb?: string;
@@ -76,6 +78,14 @@ export const routes: CustomRouteObject[] = [
path: "courses",
element: ,
},
+ {
+ path: "my-path",
+ element: (
+
+
+
+ ),
+ },
{
path: "my-duty",
element: (
@@ -92,6 +102,10 @@ export const routes: CustomRouteObject[] = [
),
},
+ {
+ path: "search",
+ element: ,
+ },
{
path: "course/:id?/detail/:lectureId?", // 使用 ? 表示 id 参数是可选的
element: ,