From 728134321f04c28ce3153ca6bfd52e508f15dea3 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 11 May 2026 09:25:49 -0700 Subject: [PATCH] feat: wire QuickCaptureBar/FAB into App.vue, add Settings route --- web/src/App.vue | 36 +++++++++++++++++++++++++++++++----- web/src/router/index.ts | 2 ++ 2 files changed, 33 insertions(+), 5 deletions(-) diff --git a/web/src/App.vue b/web/src/App.vue index cd42978..688a38d 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -12,11 +12,15 @@ :to="link.to" class="px-3 py-1 rounded text-sm text-text-muted hover:text-text-primary hover:bg-surface-raised transition-colors" active-class="text-accent bg-accent-muted" - > - {{ link.label }} - + >{{ link.label }}
+
+ + + + + + + diff --git a/web/src/router/index.ts b/web/src/router/index.ts index 42dbafe..ba7c788 100644 --- a/web/src/router/index.ts +++ b/web/src/router/index.ts @@ -5,6 +5,7 @@ import DiagnoseView from '@/views/DiagnoseView.vue' import SourcesView from '@/views/SourcesView.vue' import IncidentsView from '@/views/IncidentsView.vue' import BundlesView from '@/views/BundlesView.vue' +import SettingsView from '@/views/SettingsView.vue' export default createRouter({ history: createWebHistory(import.meta.env.BASE_URL), @@ -16,5 +17,6 @@ export default createRouter({ { path: '/incidents', component: IncidentsView }, { path: '/bundles', component: BundlesView }, { path: '/sources', component: SourcesView }, + { path: '/settings', component: SettingsView }, ], })