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} + + +
+
+ +
+