start website

This commit is contained in:
Alex Garcia 2024-05-10 20:49:47 -07:00
parent f7eb1ee696
commit a2c207347e
23 changed files with 2593 additions and 58 deletions

View file

@ -0,0 +1,21 @@
// https://vitepress.dev/guide/custom-theme
import { h } from "vue";
import type { Theme } from "vitepress";
import DefaultTheme from "vitepress/theme";
import "./style.css";
export default {
extends: DefaultTheme,
Layout: () => {
return h(DefaultTheme.Layout, null, {
// https://vitepress.dev/guide/extending-default-theme#layout-slots
"layout-top": () =>
h("marquee", { class: "banner", scrollamount: "10" }, [
"🚧🚧🚧 sqlite-vec is still in beta, and this documentation is incomplete! Watch the repo for updates 🚧🚧🚧",
]),
});
},
enhanceApp({ app, router, siteData }) {
// ...
},
} satisfies Theme;