From 0b30d9ade51c327bca41c2a55780b3e29ecbe75c Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 8 Aug 2023 19:44:52 +0100 Subject: Defines Page layout --- src/layouts/Page.astro | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/layouts/Page.astro (limited to 'src/layouts') diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro new file mode 100644 index 0000000..3ef0a58 --- /dev/null +++ b/src/layouts/Page.astro @@ -0,0 +1,17 @@ +--- +import type Locale from '../types/Locale'; +import Layout from './Layout.astro'; + +interface Props { + locale: Locale; + title: string; +} + +const { locale, title } = Astro.props; +--- + + +
+ +
+
-- cgit v1.2.3