QR Code Page (#15)

* First pass on QR Code page

* Overhaul QRLandingView.vue to allow for location data support

* oops -- fix comment

* QRLandingView: Change location scheme

We don't want to embed the map on this page for the moment, so we're going to redirect the user instead.

* Fix styling

* update qr page

* get user location on click so that we don't creep people out

* show the whole US by default

---------

Co-authored-by: Bludoo <12192277+Bludoo@users.noreply.github.com>
This commit is contained in:
Will Freeman
2024-12-04 15:48:06 -07:00
committed by GitHub
parent 99ced06779
commit 33dfd4a321
3 changed files with 183 additions and 1 deletions
+5
View File
@@ -56,6 +56,11 @@ const router = createRouter({
name: 'legal',
component: () => import('../views/LegalView.vue')
},
{
path: '/qr',
name: 'qr-landing',
component: () => import('../views/QRLandingView.vue')
},
{
path: '/:pathMatch(.*)*',
name: 'not-found',