2026-04-09 19:11:23 -03:00
|
|
|
import DefaultTheme from 'vitepress/theme'
|
2026-04-16 21:46:03 -03:00
|
|
|
import Landing from './Landing.vue'
|
2026-04-09 19:11:23 -03:00
|
|
|
import './style.css'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
extends: DefaultTheme,
|
2026-04-16 21:46:03 -03:00
|
|
|
enhanceApp({ app }) {
|
|
|
|
|
app.component('Landing', Landing)
|
|
|
|
|
},
|
2026-04-09 19:11:23 -03:00
|
|
|
}
|