This commit is contained in:
2026-05-06 14:51:24 +08:00
parent 132b2fc310
commit b248d526d2
9 changed files with 2450 additions and 37 deletions
+10 -1
View File
@@ -1,4 +1,13 @@
import DefaultTheme from 'vitepress/theme'
import './styles.css'
import HeroAnim from './components/HeroAnim.vue'
import { h } from 'vue'
export default DefaultTheme
export default {
...DefaultTheme,
Layout() {
return h(DefaultTheme.Layout, null, {
'home-hero-image': () => h(HeroAnim)
})
}
}