From a4cf7ad01c4e4b0192863455ec6e772b43125d3b Mon Sep 17 00:00:00 2001 From: Ash Entwisle Date: Wed, 13 Sep 2023 02:21:41 +0000 Subject: [PATCH] updated the boilerplate component Signed-off-by: Ash Entwisle --- src/layouts/Boilerplate.astro | 48 +++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/src/layouts/Boilerplate.astro b/src/layouts/Boilerplate.astro index e69de29..4da68d4 100644 --- a/src/layouts/Boilerplate.astro +++ b/src/layouts/Boilerplate.astro @@ -0,0 +1,48 @@ +--- +import Header from '../components/Header.astro'; +import Footer from '../components/Footer.astro'; + +export interface Props { + title: string; + description: string; + keywords: string[]; +} + +const { title, description, keywords } = Astro.props; + +const keywordsString = keywords.join(' '); +--- + + + + + + + + + + + + + + + + + + {title} + + +
+
+ +
+