build ok,

This commit is contained in:
louiscklaw
2025-04-14 09:41:58 +08:00
parent 5c3ca0112f
commit ffc862a936
2 changed files with 10 additions and 0 deletions

View File

@@ -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",

View File

@@ -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',