diff --git a/webapp/public/city-council.jpg b/webapp/public/city-council.jpg new file mode 100644 index 0000000..1f7f8b8 Binary files /dev/null and b/webapp/public/city-council.jpg differ diff --git a/webapp/src/App.vue b/webapp/src/App.vue index 08c0a7c..c66d55b 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -45,6 +45,7 @@ const items = [ const contributeItems = [ { title: 'Submit Cameras', icon: 'mdi-map-marker-plus', to: '/report/id' }, { title: 'Public Records', icon: 'mdi-file-document', to: '/foia' }, + { title: 'City Council', icon: 'mdi-account-voice', to: '/council' }, ] const metaItems = [ diff --git a/webapp/src/router/index.ts b/webapp/src/router/index.ts index 08a57d3..fcc4831 100644 --- a/webapp/src/router/index.ts +++ b/webapp/src/router/index.ts @@ -89,6 +89,14 @@ const router = createRouter({ title: 'Operators | DeFlock' } }, + { + path: '/council', + name: 'council', + component: () => import('../views/CouncilView.vue'), + meta: { + title: 'Council | DeFlock' + } + }, { path: '/contact', name: 'contact', diff --git a/webapp/src/views/CouncilView.vue b/webapp/src/views/CouncilView.vue new file mode 100644 index 0000000..2a85f05 --- /dev/null +++ b/webapp/src/views/CouncilView.vue @@ -0,0 +1,645 @@ + + + + + \ No newline at end of file