From 77b0f69d0c6e555349dd491d7ca209924d119e61 Mon Sep 17 00:00:00 2001 From: Matt Kosarek Date: Wed, 11 Mar 2026 17:49:05 -0400 Subject: Migrate to astro --- src/layouts/BaseLayout.astro | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/layouts/BaseLayout.astro (limited to 'src/layouts/BaseLayout.astro') diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro new file mode 100644 index 0000000..8be53e0 --- /dev/null +++ b/src/layouts/BaseLayout.astro @@ -0,0 +1,40 @@ +--- +import '../styles/index.css'; + +interface Props { + title: string; + description?: string; +} + +const { + title, + description = "The personal website of Matthew Kosarek", +} = Astro.props; +--- + + + + + + + {title} + + + + + + + + +
+ +
+ + + -- cgit v1.2.1