Add more cities

This commit is contained in:
2026-01-02 20:29:34 -05:00
parent 9a5273bb76
commit 4c6430d406
15 changed files with 95 additions and 24 deletions

View File

@@ -17,6 +17,21 @@ const router = createRouter({
name: '000',
component: DigiSnaxxView
},
{
path: '/boston',
name: 'bos',
component: DigiSnaxxView
},
{
path: '/chicago',
name: 'chi',
component: DigiSnaxxView
},
{
path: '/houston',
name: 'hou',
component: DigiSnaxxView
},
{
path: '/medellin',
name: 'mde',
@@ -27,16 +42,32 @@ const router = createRouter({
name: 'msp',
component: DigiSnaxxView
},
{
path: '/philly',
name: 'phl',
component: DigiSnaxxView
},
{
path: '/portland',
name: 'pdx',
component: DigiSnaxxView
},
{
path: '/stlouis',
name: 'stl',
component: DigiSnaxxView
},
// {
// path: '/live',
// name: 'live',
// component: LiveView
// },
{
path: '/media',
name: 'bluesky',
component: BlueskyView
},
// {
// path: '/media',
// name: 'bluesky',
// component: BlueskyView
// },
]
})