13 lines
249 B
Text
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>
|