diff --git a/.vitepress/theme/components/PaneFields.vue b/.vitepress/theme/components/CardField.vue similarity index 100% rename from .vitepress/theme/components/PaneFields.vue rename to .vitepress/theme/components/CardField.vue diff --git a/.vitepress/theme/components/SidebarPane.vue b/.vitepress/theme/components/SidebarCard.vue similarity index 96% rename from .vitepress/theme/components/SidebarPane.vue rename to .vitepress/theme/components/SidebarCard.vue index a88dc3e25..fc4f0af24 100644 --- a/.vitepress/theme/components/SidebarPane.vue +++ b/.vitepress/theme/components/SidebarCard.vue @@ -1,5 +1,5 @@ diff --git a/.vitepress/theme/index.ts b/.vitepress/theme/index.ts index 016b0e617..13c153b48 100644 --- a/.vitepress/theme/index.ts +++ b/.vitepress/theme/index.ts @@ -1,7 +1,7 @@ import { h } from "vue"; import { type Theme, inBrowser } from "vitepress"; import DefaultTheme from "vitepress/theme"; -import Sidebar from "./components/SidebarPane.vue"; +import Sidebar from "./components/SidebarCard.vue"; import "./style.css"; import "uno.css"; @@ -10,7 +10,7 @@ import "uno.css"; export default { Layout: () => { return h(DefaultTheme.Layout, null, { - "sidebar-nav-before": () => h(Sidebar), + "sidebar-nav-after": () => h(Sidebar), }); }, enhanceApp({ app, router, siteData }) { },