JS und CSS Dateien hinzugefügt, Navbar-Component hinzugefügt, Fonts korrigiert

This commit is contained in:
R40fendt
2025-04-04 20:47:38 +02:00
parent b4dca8e5b0
commit 1b31a84e18
22 changed files with 2172 additions and 6 deletions

11
src/router/index.js Normal file
View File

@@ -0,0 +1,11 @@
import { createMemoryHistory, createRouter } from 'vue-router'
const routes = [
{ path: '/', component: () => import('../Main.vue') }
]
export default createRouter({
history: createMemoryHistory(),
routes,
});