personal-site/src/pages/index.astro
2026-07-10 13:17:59 -07:00

13 lines
249 B
Text

---
import Layout from "@layouts/BaseLayout.astro";
---
<Layout>
<title slot="head">Home</title>
<Fragment slot="main">
<article id="hero">
<h2>It's badblocks!</h2>
<p>Pardon the dust!</p>
</article>
</Fragment>
</Layout>