diff --git a/web/src/App.vue b/web/src/App.vue index dc651e1..9166780 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -57,6 +57,7 @@ const navLinks = [ { to: '/incidents', label: 'Incidents' }, { to: '/bundles', label: 'Bundles' }, { to: '/sources', label: 'Sources' }, + { to: '/context', label: 'Context' }, ] const isDark = ref(document.documentElement.classList.contains('dark')) diff --git a/web/src/components/DocUploadZone.vue b/web/src/components/DocUploadZone.vue new file mode 100644 index 0000000..2ae2b49 --- /dev/null +++ b/web/src/components/DocUploadZone.vue @@ -0,0 +1,7 @@ + + + diff --git a/web/src/components/WizardOverlay.vue b/web/src/components/WizardOverlay.vue new file mode 100644 index 0000000..8ca915d --- /dev/null +++ b/web/src/components/WizardOverlay.vue @@ -0,0 +1,7 @@ + + + diff --git a/web/src/router/index.ts b/web/src/router/index.ts index ba7c788..ee1903d 100644 --- a/web/src/router/index.ts +++ b/web/src/router/index.ts @@ -6,6 +6,7 @@ import SourcesView from '@/views/SourcesView.vue' import IncidentsView from '@/views/IncidentsView.vue' import BundlesView from '@/views/BundlesView.vue' import SettingsView from '@/views/SettingsView.vue' +import ContextView from '@/views/ContextView.vue' export default createRouter({ history: createWebHistory(import.meta.env.BASE_URL), @@ -17,6 +18,7 @@ export default createRouter({ { path: '/incidents', component: IncidentsView }, { path: '/bundles', component: BundlesView }, { path: '/sources', component: SourcesView }, + { path: '/context', component: ContextView }, { path: '/settings', component: SettingsView }, ], }) diff --git a/web/src/views/ContextView.vue b/web/src/views/ContextView.vue new file mode 100644 index 0000000..1360fe9 --- /dev/null +++ b/web/src/views/ContextView.vue @@ -0,0 +1,258 @@ + + +