From fe7c149811f2e20c055ad0375aff05d29491efb4 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> Date: Sat, 4 May 2024 01:05:04 +0200 Subject: Rebuild the site in Astro Add licence Update site name in header to match README.md Add missing metadescription, opengraph and link to RSS Update Astro configuration to include sitemap integration with priority and changefreq settings New post --- src/layouts/Layout.astro | 102 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 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..ccaf316 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,102 @@ +--- +import "@fontsource-variable/sen"; +import Header from "../partials/Header.astro"; +import MainWrapper from "../partials/MainWrapper.astro"; +import Footer from "../partials/Footer.astro"; + +interface Props { + title: string; + description: string; +} + +const { title, description } = Astro.props; +--- + + + +
+ + + + + + + + + + + + + + + + + + + + + + + +