diff --git a/src/layouts/Main.astro b/src/layouts/Main.astro
new file mode 100644
index 0000000..7738337
--- /dev/null
+++ b/src/layouts/Main.astro
@@ -0,0 +1,26 @@
+---
+export interface Props {
+ pageTitle: string;
+ pageDesc?: string;
+}
+
+const { pageTitle, pageDesc } = Astro.props;
+---
+
+
+ {pageTitle}
+ {pageDesc}
+
+
+
+