Now this should actually fix it

This commit is contained in:
Andrew Lee 2024-12-31 23:13:24 -05:00
parent e179d5bdd3
commit b8365b66d7
Signed by: andrew
SSH key fingerprint: SHA256:bbGg1DYG5CuKl2jo1DqzvUsaTeyvhM3tjCsej5lYMg4

View file

@ -1,9 +1,9 @@
---
import Layout from '../layouts/Layout.astro';
const { title, description } = Astro.props;
const { frontmatter } = Astro.props;
---
<Layout title={title} description={description}>
<Layout title={frontmatter.title} description={frontmatter.description}>
<div class="container">
<slot />
</div>