first push

This commit is contained in:
2025-11-11 18:16:41 -05:00
commit 90243a3740
62 changed files with 9545 additions and 0 deletions

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

@@ -0,0 +1,27 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import LiveView from '../views/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: '/live',
// name: 'live',
// component: LiveView
// },
// {
// path: '/media',
// name: 'bluesky',
// component: BlueskyView
// },
]
})
export default router