src/pages/ai.astro 440 B raw
1
---
2
import PageLayout from "@/layouts/Base.astro";
3
import { Content } from "../content/pages/ai.mdx";
4
5
const meta = {
6
	title: "/ai",
7
	description: "My personal philosophy and use of AI",
8
};
9
---
10
11
<PageLayout meta={meta}>
12
  <article class="flex-grow break-words">
13
    <h1 class="title mb-6">/ai</h1>
14
    <div class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none">
15
      <Content />
16
    </div>
17
  </article>
18
</PageLayout>