big milestone!

This commit is contained in:
padreug 2025-02-11 14:43:08 +01:00
parent 2b35d6f39b
commit ac906ca6c9
28 changed files with 1332 additions and 16 deletions

View file

@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import Home from '@/pages/Home.vue'
import Directory from '@/pages/Directory.vue'
import FAQ from '@/pages/FAQ.vue'
import Support from '@/pages/Support.vue'
const router = createRouter({
history: createWebHistory(),
@ -26,6 +27,11 @@ const router = createRouter({
name: 'directory-item',
component: () => import('@/pages/DirectoryItem.vue'),
props: true
},
{
path: '/support',
name: 'support',
component: Support
}
]
})