diff --git a/002_source/cms/package.json b/002_source/cms/package.json index 4fb3ca4..7eb0df2 100644 --- a/002_source/cms/package.json +++ b/002_source/cms/package.json @@ -61,15 +61,18 @@ "@tiptap/react": "2.2.4", "@tiptap/starter-kit": "2.2.4", "aws-amplify": "6.0.17", + "axios": "^1.8.4", "dayjs": "1.11.10", "embla-carousel": "8.0.0", "embla-carousel-react": "8.0.0", "firebase": "10.8.0", "i18next": "23.10.0", + "i18next-browser-languagedetector": "^8.0.4", "i18next-http-backend": "2.5.0", "mapbox-gl": "3.1.2", "next": "14.1.0", "next-i18next": "15.2.0", + "pocketbase": "^0.25.2", "react": "18.2.0", "react-dom": "18.2.0", "react-dropzone": "14.2.3", @@ -78,6 +81,7 @@ "react-map-gl": "7.1.7", "react-markdown": "9.0.1", "react-simple-maps": "3.0.0", + "react-spinners": "^0.15.0", "react-syntax-highlighter": "15.5.0", "recharts": "2.12.1", "sonner": "1.4.1", diff --git a/002_source/cms/src/paths.ts b/002_source/cms/src/paths.ts index 94854c5..af050c5 100644 --- a/002_source/cms/src/paths.ts +++ b/002_source/cms/src/paths.ts @@ -76,6 +76,12 @@ export const paths = { thread: (threadType: string, threadId: string) => `/dashboard/chat/${threadType}/${threadId}`, }, crypto: '/dashboard/crypto', + lesson_types: { + list: '/dashboard/lesson_types', + create: '/dashboard/lesson_types/create', + details: (lessonTypeId: string) => `/dashboard/lesson_types/${lessonTypeId}`, + edit: (lessonTypeId: string) => `/dashboard/lesson_types/edit/${lessonTypeId}`, + }, customers: { list: '/dashboard/customers', create: '/dashboard/customers/create',