| 1 | --- |
| 2 | import PageLayout from "@/layouts/Base.astro"; |
| 3 | import { Content } from "../content/pages/about.mdx"; |
| 4 | |
| 5 | const meta = { |
| 6 | title: "/about", |
| 7 | description: "More about Steve Simkins", |
| 8 | }; |
| 9 | --- |
| 10 | |
| 11 | <PageLayout meta={meta}> |
| 12 | <article class="flex-grow break-words"> |
| 13 | <h1 class="title mb-6">/about</h1> |
| 14 | <div class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none"> |
| 15 | <Content /> |
| 16 | </div> |
| 17 | </article> |
| 18 | </PageLayout> |