mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
19 lines
491 B
TypeScript
19 lines
491 B
TypeScript
// https://vitepress.dev/guide/custom-theme
|
|
import { h } from "vue";
|
|
import Theme from "vitepress/theme";
|
|
import "uno.css";
|
|
import "./style.css";
|
|
import HeroVideo from "./components/HeroVideo.vue";
|
|
import BuyMeCoffee from "./components/BuyMeCoffee.vue";
|
|
|
|
export default {
|
|
...Theme,
|
|
Layout: () => {
|
|
return h(Theme.Layout, null, {
|
|
"home-hero-image": () => h(HeroVideo),
|
|
"sidebar-nav-after": () => h(BuyMeCoffee),
|
|
});
|
|
},
|
|
enhanceApp({ app, router, siteData }) {},
|
|
};
|