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 },
],
})