From 6bd4846b71944add485433703d85982b2396d9ad Mon Sep 17 00:00:00 2001 From: "houston[bot]" Date: Tue, 1 Aug 2023 18:48:26 +0100 Subject: Initial commit from Astro --- src/layouts/Layout.astro | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/layouts/Layout.astro (limited to 'src/layouts/Layout.astro') diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..3345b88 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,39 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + + {title} + + + + + + -- cgit v1.2.3