mirror of
https://github.com/imezx/Warp.git
synced 2026-03-18 00:44:16 +00:00
15 lines
No EOL
334 B
TypeScript
15 lines
No EOL
334 B
TypeScript
import DefaultTheme from 'vitepress/theme'
|
|
import { h } from 'vue'
|
|
import Typewriter from './components/Typewriter.vue'
|
|
import './style.css'
|
|
|
|
export default {
|
|
extends: DefaultTheme,
|
|
Layout() {
|
|
return h(DefaultTheme.Layout, null, {
|
|
'home-hero-info': () => h(Typewriter, {
|
|
staticTitle: 'Warp'
|
|
})
|
|
})
|
|
}
|
|
} |