Started to work on contact page

This commit is contained in:
2025-04-01 18:15:35 +02:00
parent 26310a29d5
commit a29be80381
5 changed files with 62 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import BaseArticle from '@/views/BaseArticle.vue'
import SkillsView from '@/views/SkillsView.vue'
import ContactView from '@/views/ContactView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -21,6 +22,11 @@ const router = createRouter({
name: 'skills',
component: SkillsView
},
{
path: '/contact',
name: 'contact',
component: ContactView
},
{
path: '/about',
name: 'about',