diff --git a/src/App.vue b/src/App.vue index 4e94a36..cfa96fa 100644 --- a/src/App.vue +++ b/src/App.vue @@ -24,6 +24,7 @@ import LogoSvg from './components/icons/IconLogo.vue' diff --git a/src/router/index.ts b/src/router/index.ts index 3e49915..1e6af9b 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -17,6 +17,11 @@ const router = createRouter({ // which is lazy-loaded when the route is visited. component: () => import('../views/AboutView.vue'), }, + { + path: '/contact', + name: 'contact', + component: () => import('../views/ContactView.vue'), + }, ], }) diff --git a/src/views/ContactView.vue b/src/views/ContactView.vue new file mode 100644 index 0000000..5752d80 --- /dev/null +++ b/src/views/ContactView.vue @@ -0,0 +1,94 @@ + + +