diff --git a/astro.config.ts b/astro.config.ts index 34d4d95..6cea690 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -37,7 +37,8 @@ export default defineConfig({ title: '@vtbag', components: { Head: "./src/components/NHead.astro", - PageTitle: "./src/components/PageTitle.astro" + PageTitle: "./src/components/PageTitle.astro", + PageFrame: "./src/components/PageFrame.astro", }, plugins: [starlightImageZoom()], tableOfContents: { diff --git a/src/components/PageFrame.astro b/src/components/PageFrame.astro new file mode 100644 index 0000000..397d06e --- /dev/null +++ b/src/components/PageFrame.astro @@ -0,0 +1,11 @@ +--- +import type { Props } from "@astrojs/starlight/props"; +import StarlightPageFrame from "@astrojs/starlight/components/PageFrame.astro"; +--- + + + + + + +
\ No newline at end of file