diff --git a/webapp/src/App.vue b/webapp/src/App.vue index 92879b2..6b669c1 100644 --- a/webapp/src/App.vue +++ b/webapp/src/App.vue @@ -38,8 +38,9 @@ const items = [ { title: 'Home', icon: 'mdi-home', to: '/' }, { title: 'Map', icon: 'mdi-map', href: 'https://maps.deflock.org' }, { title: 'Learn', icon: 'mdi-school', to: '/what-is-an-alpr' }, - { title: 'Store', icon: 'mdi-shopping', to: '/store' }, + { title: 'Store', icon: 'mdi-shopping', to: '/store', isNew: true }, { title: 'Donate', icon: 'mdi-cash-multiple', to: '/donate' }, + ] const resourceItems = [ @@ -107,7 +108,17 @@ watch(() => theme.global.name.value, (newTheme) => { :prepend-icon="item.icon" > {{ item.title }} + + New! + + @@ -213,9 +224,19 @@ watch(() => theme.global.name.value, (newTheme) => { > {{ item.icon }} {{ item.title }} + + New! + +