diff --git a/docs/.vitepress/theme/Layout.vue b/docs/.vitepress/theme/Layout.vue
new file mode 100644
index 0000000..f0417ea
--- /dev/null
+++ b/docs/.vitepress/theme/Layout.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
diff --git a/docs/.vitepress/theme/index.ts b/docs/.vitepress/theme/index.ts
index 42fe9a9..b7a0ce7 100644
--- a/docs/.vitepress/theme/index.ts
+++ b/docs/.vitepress/theme/index.ts
@@ -1,4 +1,8 @@
import DefaultTheme from 'vitepress/theme'
+import Layout from './Layout.vue';
import './custom.css'
-export default DefaultTheme
+export default {
+ ...DefaultTheme,
+ Layout: Layout,
+}