From c1e138cc8d29ad05ad0f3c2dfed4860ed02b9065 Mon Sep 17 00:00:00 2001 From: stopflock Date: Wed, 15 Jul 2026 13:39:53 -0500 Subject: [PATCH] little tweaks --- webapp/src/App.vue | 23 ++++++++++++++++++- webapp/src/components/layout/Footer.vue | 13 +++-------- .../src/components/layout/OfficialSocials.vue | 6 +++-- 3 files changed, 29 insertions(+), 13 deletions(-) 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! + +