add contact page

This commit is contained in:
Yisroel Baum 2026-06-13 23:19:30 +03:00
parent 6e98825767
commit 4e03b0cacb
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
2 changed files with 557 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomePage from '@/views/HomePage.vue'
import AboutPage from '@/views/AboutPage.vue'
import ContactPage from '@/views/ContactPage.vue'
import LoginPage from '@/views/LoginPage.vue'
import MediaPage from '@/views/MediaPage.vue'
import ElementPage from '@/views/ElementPage.vue'
@ -25,6 +26,11 @@ const router = createRouter({
name: 'about',
component: AboutPage,
},
{
path: '/contact',
name: 'contact',
component: ContactPage,
},
{
path: '/media',
name: 'media',