add toll camera section, fix operators table, add donation link

This commit is contained in:
Will Freeman
2024-11-11 14:01:10 -07:00
parent 4f6be22b41
commit 3e004acb11
5 changed files with 20 additions and 10 deletions
+4 -2
View File
@@ -17,8 +17,9 @@ const items = [
{ title: 'Known Operators', icon: 'mdi-police-badge', to: '/operators' },
{ title: 'About', icon: 'mdi-information', to: '/about' },
{ title: 'Contact', icon: 'mdi-email', to: '/contact' },
{ title: 'Feature Roadmap', icon: 'mdi-road-variant', to: '/roadmap' },
{ title: 'GitHub', icon: 'mdi-github', href: 'https://github.com/frillweeman/deflock'}
// { title: 'Feature Roadmap', icon: 'mdi-road-variant', to: '/roadmap' },
{ title: 'GitHub', icon: 'mdi-github', href: 'https://github.com/frillweeman/deflock'},
{ title: 'Donate', icon: 'mdi-heart', href: 'https://github.com/sponsors/frillweeman'}
]
const drawer = ref(false)
@@ -64,6 +65,7 @@ watch(() => theme.global.name.value, (newTheme) => {
link
:to="item.to"
:href="item.href"
:target="{ '_blank': item.href }"
><v-icon start>{{ item.icon }}</v-icon>{{ item.title }}</v-list-item>
</v-list>
</v-navigation-drawer>