feat: add homepage

This commit is contained in:
2026-01-18 21:11:35 +01:00
parent ee1db93298
commit c5e51a7513
17 changed files with 1550 additions and 115 deletions

23
frontend/src/router.js Normal file
View File

@@ -0,0 +1,23 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomePage from './pages/HomePage.vue'
import ExtractPage from './pages/ExtractPage.vue'
const routes = [
{
path: '/',
name: 'home',
component: HomePage
},
{
path: '/extract',
name: 'extract',
component: ExtractPage
}
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router