end of project

This commit is contained in:
2023-06-20 09:16:28 +02:00
parent e214326ad5
commit 17e5e3fcfe
39 changed files with 1055 additions and 223 deletions

View File

@@ -1,9 +1,5 @@
import { createRouter, createWebHistory } from 'vue-router'
const page = {
template:'<div>Je Sais Pas trop quoi</div>'
}
const routes = [
{
@@ -11,16 +7,10 @@ const routes = [
name: 'home',
component: () => import('@/views/Index.vue')
},
{
path: '/footer',
name: 'footer',
component: () => import('@/components/Footer.vue')
},
{
path: '/whoAmI',
name: 'whoAmI',
component: () => import('@/views/WhoAmI.vue')
path: '/profile',
name: 'profile',
component: () => import('@/views/Profile.vue')
},
{
path: '/technologies',
@@ -42,6 +32,11 @@ const routes = [
name: 'contact',
component: () => import('@/views/Contact.vue')
},
{
path: '/:pathMatch(.*)',
name: '404',
component: () => import('@/views/404.vue')
},
]