first push

This commit is contained in:
2025-11-11 18:03:20 -05:00
commit 010244847f
56 changed files with 6749 additions and 0 deletions

43
src/router/index.js Normal file
View File

@@ -0,0 +1,43 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import DigiSnaxxView from '../views/DigiSnaxxView.vue'
// import LiveView from '../views/zarchive/LiveView.vue'
import BlueskyView from '../views/BlueskyView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView
},
{
path: '/beyond',
name: '000',
component: DigiSnaxxView
},
{
path: '/medellin',
name: 'mde',
component: DigiSnaxxView
},
{
path: '/mpls-stp',
name: 'msp',
component: DigiSnaxxView
},
// {
// path: '/live',
// name: 'live',
// component: LiveView
// },
{
path: '/media',
name: 'bluesky',
component: BlueskyView
},
]
})
export default router