diff options
Diffstat (limited to 'src/layouts/PageLayout.astro')
-rw-r--r-- | src/layouts/PageLayout.astro | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/layouts/PageLayout.astro b/src/layouts/PageLayout.astro new file mode 100644 index 0000000..3730334 --- /dev/null +++ b/src/layouts/PageLayout.astro @@ -0,0 +1,7 @@ +--- +import BaseLayout from "./BaseLayout.astro"; +--- + +<BaseLayout> + <slot /> +</BaseLayout> |