add landing
Main daploy / deploy (push) Successful in 55s

This commit is contained in:
2024-11-11 16:06:09 +02:00
parent bae4a2fe79
commit 237ff16864
14 changed files with 497 additions and 307 deletions
+3 -3
View File
@@ -10,12 +10,12 @@ const router = createRouter({
component: HomeView,
},
{
path: '/about',
name: 'about',
path: '/create',
name: 'create',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue'),
component: () => import('../views/CreateView.vue'),
},
],
})