diff --git a/src/layouts/MDXPost.astro b/src/layouts/MDXPost.astro new file mode 100644 index 0000000..43590e6 --- /dev/null +++ b/src/layouts/MDXPost.astro @@ -0,0 +1,26 @@ +--- +import '../styles/global.css'; +export interface Props { + title?: string; + description?: string; +} + +const { title, description } = Astro.props; +--- + + + + + {title || '文档'} + + + + + +
+
+ +
+
+ + \ No newline at end of file