From d45aee8fdbf3b60f7f81d56fff592e26376794c6 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Tue, 30 Jul 2024 12:12:41 +0300 Subject: [PATCH] Add landing --- src/layout/AppMenu.vue | 5 + src/router/index.js | 5 + src/views/pages/Landing.vue | 447 ++++++++++++++++++++++++++++++++++++ 3 files changed, 457 insertions(+) create mode 100644 src/views/pages/Landing.vue diff --git a/src/layout/AppMenu.vue b/src/layout/AppMenu.vue index bd43eae..364fc1c 100644 --- a/src/layout/AppMenu.vue +++ b/src/layout/AppMenu.vue @@ -33,6 +33,11 @@ const model = ref([ icon: 'pi pi-fw pi-briefcase', to: '/pages', items: [ + { + label: 'Landing', + icon: 'pi pi-fw pi-globe', + to: '/landing' + }, { label: 'Auth', icon: 'pi pi-fw pi-user', diff --git a/src/router/index.js b/src/router/index.js index 5bda538..d3fdabd 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -106,6 +106,11 @@ const router = createRouter({ } ] }, + { + path: '/landing', + name: 'landing', + component: () => import('@/views/pages/Landing.vue') + }, { path: '/pages/notfound', name: 'notfound', diff --git a/src/views/pages/Landing.vue b/src/views/pages/Landing.vue new file mode 100644 index 0000000..8b504f2 --- /dev/null +++ b/src/views/pages/Landing.vue @@ -0,0 +1,447 @@ + + +