diff --git a/webapp/public/wardriving.jpg b/webapp/public/wardriving.jpg new file mode 100644 index 0000000..b7d02df Binary files /dev/null and b/webapp/public/wardriving.jpg differ diff --git a/webapp/src/App.vue b/webapp/src/App.vue index bb5bf4a..d71b52a 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -17,7 +17,8 @@ const items = [ { title: 'Map', icon: 'mdi-map', to: '/map' }, { title: 'What is an ALPR?', icon: 'mdi-cctv', to: '/what-is-an-alpr' }, { title: 'Report an ALPR', icon: 'mdi-map-marker-plus', to: '/report' }, - { title: 'Known Operators', icon: 'mdi-police-badge', to: '/operators' }, + { title: 'Wardriving', icon: 'mdi-car-connected', to: '/wardriving' }, + // { title: 'Known Operators', icon: 'mdi-police-badge', to: '/operators' }, // { title: 'About', icon: 'mdi-information', to: '/about' }, // { title: 'Feature Roadmap', icon: 'mdi-road-variant', to: '/roadmap' }, ] diff --git a/webapp/src/components/DFMapPopup.vue b/webapp/src/components/DFMapPopup.vue index a0a8b92..50e49fe 100644 --- a/webapp/src/components/DFMapPopup.vue +++ b/webapp/src/components/DFMapPopup.vue @@ -45,7 +45,7 @@ + + diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts index 035b9eb..48f96fb 100644 --- a/webapp/src/router/index.ts +++ b/webapp/src/router/index.ts @@ -66,6 +66,14 @@ const router = createRouter({ title: 'Operators | DeFlock' } }, + { + path: '/wardriving', + name: 'wardriving', + component: () => import('../views/Wardriving.vue'), + meta: { + title: 'Wardriving | DeFlock' + } + }, { path: '/contact', name: 'contact', diff --git a/webapp/src/views/OperatorsView.vue b/webapp/src/views/OperatorsView.vue index 16b808a..2f39c0e 100644 --- a/webapp/src/views/OperatorsView.vue +++ b/webapp/src/views/OperatorsView.vue @@ -1,44 +1,5 @@