homepage video

This commit is contained in:
tim
2025-03-13 16:02:42 -04:00
parent 48ad37f105
commit 00594c8125
3 changed files with 6 additions and 3 deletions

View File

@@ -3,14 +3,14 @@ import { h } from 'vue'
import type { Theme } from 'vitepress'
import DefaultTheme from 'vitepress/theme-without-fonts' // WITHOUT fonts
import './style.css'
import HeroVideo from "./HeroVideo.vue";
import IntroVideo from "../../components/IntroVideo.vue";
export default {
extends: DefaultTheme,
Layout: () => {
return h(DefaultTheme.Layout, null, {
// https://vitepress.dev/guide/extending-default-theme#layout-slots
'home-hero-info-after': () => h(HeroVideo),
'home-hero-actions-after': () => h(IntroVideo),
})
},
enhanceApp({ app, router, siteData }) {