From 4bc53d246a4192c4104da2b988df9fcf4440b31b Mon Sep 17 00:00:00 2001 From: Jivraj-18 <22f3002542@ds.study.iitm.ac.in> Date: Fri, 20 Sep 2024 16:06:16 +0530 Subject: [PATCH] SDSDashboard and GLDashboard --- package-lock.json | 8 +- package.json | 2 +- src/components/GLDashboard.vue | 237 ++++++++++++++++++ src/components/SDSDashboard.vue | 417 ++++++++++++++++++++++++++++++++ src/components/newPage.vue | 13 + src/router.js | 12 +- 6 files changed, 682 insertions(+), 7 deletions(-) create mode 100644 src/components/GLDashboard.vue create mode 100644 src/components/SDSDashboard.vue create mode 100644 src/components/newPage.vue diff --git a/package-lock.json b/package-lock.json index 5b58f92..4924dff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,7 @@ "autoprefixer": "^10.4.16", "axios": "^1.6.2", "core-js": "^3.8.3", - "marked": "^14.0.0", + "marked": "^14.1.2", "postcss": "^8.4.32", "tailwindcss": "^3.3.6", "vue": "^3.2.13", @@ -13177,9 +13177,9 @@ } }, "node_modules/marked": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-14.0.0.tgz", - "integrity": "sha512-uIj4+faQ+MgHgwUW1l2PsPglZLOLOT1uErt06dAPtx2kjteLAkbsd/0FiYg/MGS+i7ZKLb7w2WClxHkzOOuryQ==", + "version": "14.1.2", + "resolved": "https://registry.npmjs.org/marked/-/marked-14.1.2.tgz", + "integrity": "sha512-f3r0yqpz31VXiDB/wj9GaOB0a2PRLQl6vJmXiFrniNwjkKdvakqJRULhjFKJpxOchlCRiG5fcacoUZY5Xa6PEQ==", "bin": { "marked": "bin/marked.js" }, diff --git a/package.json b/package.json index 40b37a7..7c56904 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "autoprefixer": "^10.4.16", "axios": "^1.6.2", "core-js": "^3.8.3", - "marked": "^14.0.0", + "marked": "^14.1.2", "postcss": "^8.4.32", "tailwindcss": "^3.3.6", "vue": "^3.2.13", diff --git a/src/components/GLDashboard.vue b/src/components/GLDashboard.vue new file mode 100644 index 0000000..bc52b61 --- /dev/null +++ b/src/components/GLDashboard.vue @@ -0,0 +1,237 @@ + + + + + + \ No newline at end of file diff --git a/src/components/SDSDashboard.vue b/src/components/SDSDashboard.vue new file mode 100644 index 0000000..c5ae7b7 --- /dev/null +++ b/src/components/SDSDashboard.vue @@ -0,0 +1,417 @@ + + + + + + \ No newline at end of file diff --git a/src/components/newPage.vue b/src/components/newPage.vue new file mode 100644 index 0000000..c912750 --- /dev/null +++ b/src/components/newPage.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/src/router.js b/src/router.js index 727412c..c6fc850 100644 --- a/src/router.js +++ b/src/router.js @@ -12,8 +12,8 @@ import StudyGroups from './components/StudyGroups.vue' import StudyBuddy from './components/StudyBuddy.vue' import ChatBot from './components/ChatBot.vue' import NotFound from './components/NotFound.vue' - - +import GLDashboard from './components/GLDashboard.vue' +import SDSDashboard from './components/SDSDashboard.vue' @@ -93,6 +93,14 @@ const routes = [ path: '/:catchAll(.*)', component: NotFound }, + { + path: '/GLDashboard', + component: GLDashboard + }, + { + path: '/SDSDashboard', + component: SDSDashboard + } ]; const router = createRouter({