src/pages/kill-your-lawn.astro 449 B raw
1
---
2
import PageLayout from "@/layouts/Base.astro";
3
import { Content } from "../content/pages/lawn.mdx";
4
5
const meta = {
6
	title: "/kill-your-lawn",
7
	description: "Before it kills you",
8
};
9
---
10
11
<PageLayout meta={meta}>
12
  <article class="flex-grow break-words">
13
    <h1 class="title mb-6">/kill-your-lawn</h1>
14
    <div class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none">
15
      <Content />
16
    </div>
17
  </article>
18
</PageLayout>