diff --git a/apps/docs/astro.config.mjs b/apps/docs/astro.config.mjs
index 68f9b89..ac752fa 100644
--- a/apps/docs/astro.config.mjs
+++ b/apps/docs/astro.config.mjs
@@ -4,6 +4,7 @@ import starlight from "@astrojs/starlight";
import solidJs from "@astrojs/solid-js";
import starlightBlog from "starlight-blog";
+import starlightImageZoom from "starlight-image-zoom";
// https://astro.build/config
export default defineConfig({
@@ -22,6 +23,7 @@ export default defineConfig({
integrations: [
starlight({
plugins: [
+ starlightImageZoom(),
starlightBlog({
authors: {
deminearchiver: {
@@ -71,7 +73,10 @@ export default defineConfig({
"./src/styles/custom.css",
"./src/styles/theme.css",
"./src/styles/landing.css",
- ]
+ ],
+ components: {
+ MarkdownContent: "./src/components/MarkdownContent.astro",
+ },
}),
solidJs(),
]
diff --git a/apps/docs/src/components/MarkdownContent.astro b/apps/docs/src/components/MarkdownContent.astro
new file mode 100644
index 0000000..46857e6
--- /dev/null
+++ b/apps/docs/src/components/MarkdownContent.astro
@@ -0,0 +1,8 @@
+---
+import type { Props } from '@astrojs/starlight/props'
+import Default from "starlight-blog/overrides/MarkdownContent.astro"
+import ImageZoom from 'starlight-image-zoom/components/ImageZoom.astro'
+---
+
+
+