chore: updated default title and links bc1a35f0
Steve · 2026-05-23 22:19 10 file(s) · +11 −9
src/content/pages/about.mdx +0 −2
6 6
import aboutImg from "../../assets/pfp.png";
7 7
import Diagram from "@/components/blog/Diagram.astro";
8 8
9 -
# /about
10 -
11 9
My name is Steve and I'm a DX Engineer with a passion for developer tooling that advances an open web. I'm currently working at [Stablecore](https://stablecore.com) as a senior solutions engineer. I'm also working on a host of other [projects](/projects), the latest being [Andromeda](https://andromeda.build). Check out what else I've been up to recently at my [now page](/now)!
12 10
13 11
<div class="flex justify-center not-prose">
src/content/pages/ai.mdx +0 −2
1 -
# /ai
2 -
3 1
A brief overview of my personal philosophy and use of AI tooling
4 2
5 3
## Pandora's Box
src/content/pages/uses.md +0 −2
1 -
# /uses
2 -
3 1
A non-comprehensive list of things I'm currently using.
4 2
5 3
## Hardware/Gear
src/data/constants.ts +4 −0
65 65
		title: "/uses",
66 66
		path: "/uses",
67 67
	},
68 +
  {
69 +
    title: "/ai",
70 +
    path: "/ai"
71 +
  },
68 72
	{
69 73
		title: "/photos",
70 74
		path: "https://steve.photo",
src/pages/about.astro +1 −0
10 10
11 11
<PageLayout meta={meta}>
12 12
  <article class="flex-grow break-words">
13 +
    <h1 class="title mb-6">/about</h1>
13 14
    <div class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none">
14 15
      <Content />
15 16
    </div>
src/pages/ai.astro +1 −0
10 10
11 11
<PageLayout meta={meta}>
12 12
  <article class="flex-grow break-words">
13 +
    <h1 class="title mb-6">/ai</h1>
13 14
    <div class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none">
14 15
      <Content />
15 16
    </div>
src/pages/cellar/[short_id].astro +1 −1
35 35
			<p class="text-red-400 text-sm">Could not load wine: {fetchError}</p>
36 36
		) : wine && (
37 37
			<>
38 -
				<h1 class="text-2xl font-bold" style="letter-spacing:-0.5px">{wine.name}</h1>
38 +
				<h1 class="title" style="letter-spacing:-0.5px">{wine.name}</h1>
39 39
40 40
				<div class="grid grid-cols-2 gap-6 items-center wine-detail-top">
41 41
					{wine.has_image && (
src/pages/kill-your-lawn.astro +1 −0
10 10
11 11
<PageLayout meta={meta}>
12 12
  <article class="flex-grow break-words">
13 +
    <h1 class="title mb-6">/kill-your-lawn</h1>
13 14
    <div class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none">
14 15
      <Content />
15 16
    </div>
src/pages/now/[slug].astro +2 −2
75 75
	<article>
76 76
		{isError ? (
77 77
			<>
78 -
				<h1 class="text-2xl font-bold mb-4">{title}</h1>
78 +
				<h1 class="title mb-4">{title}</h1>
79 79
				<p class="text-zinc-400 mb-8">{errorMessage}</p>
80 80
				<a class="style-link" href="/now">&larr; Back to Now</a>
81 81
			</>
82 82
		) : (
83 83
			<>
84 -
				{title && <h1 class="text-2xl font-bold mb-2">{title}</h1>}
84 +
				{title && <h1 class="title mb-2">{title}</h1>}
85 85
				<time class="text-sm text-zinc-400">{publishedAt}</time>
86 86
				<div class="prose prose-invert max-w-none my-4">
87 87
					<Fragment set:html={contentHTML} />
src/pages/uses.astro +1 −0
10 10
11 11
<PageLayout meta={meta}>
12 12
  <article class="flex-grow break-words">
13 +
    <h1 class="title mb-6">/uses</h1>
13 14
    <div
14 15
      class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none"
15 16
    >