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 @@ + + +