diff --git a/components.d.ts b/components.d.ts
index 9d4ba8d..40b7d2a 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -31,6 +31,10 @@ declare module 'vue' {
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
TestIcon: typeof import('./src/components/icons/TestIcon.vue')['default']
+ Upload: typeof import('./src/components/icons/Upload.vue')['default']
+ UploadFilled: typeof import('./src/components/icons/UploadFilled.vue')['default']
+ Video: typeof import('./src/components/icons/Video.vue')['default']
+ VideoFilled: typeof import('./src/components/icons/VideoFilled.vue')['default']
VueHead: typeof import('./src/components/VueHead.tsx')['default']
}
}
@@ -56,5 +60,9 @@ declare global {
const RouterLink: typeof import('vue-router')['RouterLink']
const RouterView: typeof import('vue-router')['RouterView']
const TestIcon: typeof import('./src/components/icons/TestIcon.vue')['default']
+ const Upload: typeof import('./src/components/icons/Upload.vue')['default']
+ const UploadFilled: typeof import('./src/components/icons/UploadFilled.vue')['default']
+ const Video: typeof import('./src/components/icons/Video.vue')['default']
+ const VideoFilled: typeof import('./src/components/icons/VideoFilled.vue')['default']
const VueHead: typeof import('./src/components/VueHead.tsx')['default']
}
\ No newline at end of file
diff --git a/src/components/DashboardLayout.vue b/src/components/DashboardLayout.vue
index 19258df..1a1b422 100644
--- a/src/components/DashboardLayout.vue
+++ b/src/components/DashboardLayout.vue
@@ -1,47 +1,43 @@
-
+
diff --git a/src/components/icons/Upload.vue b/src/components/icons/Upload.vue
new file mode 100644
index 0000000..3cafb23
--- /dev/null
+++ b/src/components/icons/Upload.vue
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/UploadFilled.vue b/src/components/icons/UploadFilled.vue
new file mode 100644
index 0000000..0717c75
--- /dev/null
+++ b/src/components/icons/UploadFilled.vue
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/Video.vue b/src/components/icons/Video.vue
new file mode 100644
index 0000000..7679b34
--- /dev/null
+++ b/src/components/icons/Video.vue
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/VideoFilled.vue b/src/components/icons/VideoFilled.vue
new file mode 100644
index 0000000..e6ca26b
--- /dev/null
+++ b/src/components/icons/VideoFilled.vue
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts
index 8c80a1b..fce96b8 100644
--- a/src/components/icons/index.ts
+++ b/src/components/icons/index.ts
@@ -39,8 +39,4 @@ export const BellFilled = createStaticVNode(``, 1);
-export const Search = createStaticVNode(``, 1);
\ No newline at end of file
+export const Search = createStaticVNode(``, 1);
\ No newline at end of file
diff --git a/src/main.ts b/src/main.ts
index eec33c8..b685182 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -11,7 +11,7 @@ import { createPinia } from "pinia";
import { useAuthStore } from './stores/auth';
import ToastService from 'primevue/toastservice';
import Tooltip from 'primevue/tooltip';
-const bodyClass = ":uno: font-sans bg-[#f9fafd] text-gray-800 antialiased flex flex-col min-h-screen"
+const bodyClass = ":uno: font-sans text-gray-800 antialiased flex flex-col min-h-screen"
export function createApp() {
const pinia = createPinia();
const app = createSSRApp(withErrorBoundary(RouterView));
diff --git a/src/routes/index.ts b/src/routes/index.ts
index 8d7e0e2..a4501f6 100644
--- a/src/routes/index.ts
+++ b/src/routes/index.ts
@@ -67,6 +67,11 @@ const routes: RouteData[] = [
next();
}
},
+ {
+ path: "upload",
+ name: "upload",
+ component: () => import("./add/Add.vue"),
+ },
{
path: "video",
name: "video",