corp feature loop front & center

This commit is contained in:
tim
2025-05-19 16:48:47 -04:00
parent 5d34766105
commit 4b6b40fa9b
12 changed files with 22 additions and 16 deletions

View File

@@ -3,14 +3,16 @@ import { h } from 'vue'
import type { Theme } from 'vitepress'
import DefaultTheme from 'vitepress/theme-without-fonts' // WITHOUT fonts
import './style.css'
import IntroVideoAutoplay from "../../components/IntroVideoAutoplay.vue";
import FeatureVideoLoop from "../../components/FeatureVideoLoop.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-actions-after': () => h(IntroVideoAutoplay),
'home-hero-info-after': () => h(FeatureVideoLoop),
'home-features-after': () => h(IntroVideo),
})
},
enhanceApp({ app, router, siteData }) {