New blog
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m3s

This commit is contained in:
2026-06-08 19:31:19 -04:00
parent 581f888218
commit 358e9cee4a
20 changed files with 586 additions and 102 deletions

View File

@@ -1,48 +1,48 @@
---
title: 'Hello World: The Art of Minimalism'
title: 'Hello World'
date: '2024-01-01'
description: 'An introduction to this minimal digital garden and the philosophy behind it.'
tags: ['minimalism', 'design', 'intro']
description: 'A short MDX smoke test for this site.'
tags: ['site', 'mdx', 'notes']
---
Welcome to my new digital garden. This space is designed to be a reflection of my philosophy: **simplicity is the ultimate sophistication**.
First post for the site. Mostly a smoke test: headings, lists, code blocks, sidenotes, and citations all need to survive the MDX pipeline.
## Why Minimalism?
## What this checks
In a world full of noise, I find peace in clarity. This website is built with:
The site is built with:
- **Next.js 15**: For bleeding-edge performance.
- **Tailwind CSS**: For utility-first styling.
- **MDX**: For rich, interactive content.
- **Next.js** for routing and rendering.
- **Tailwind CSS** for the interface.
- **MDX** for posts that need components inline.
## The Detail
Design is not just what it looks like and feels like. Design is how it works. <Citation id="jobs" index={1} />
The goal is a writing setup that stays plain until a post needs diagrams, notes, or citations. <Citation id="jobs" index={1} />
<SideNote title="Minimalism">
"Simplicity is the ultimate sophistication." — Leonardo da Vinci
<SideNote title="MDX note">
This archived post is mostly here to exercise custom components.
</SideNote>
### Code Snippet Test
Here is how I configured the font:
Here is the font setup pattern:
```typescript
const inter = Inter({
variable: "--font-inter",
const instrumentSans = Instrument_Sans({
variable: "--font-instrument-sans",
subsets: ["latin"],
display: "swap",
});
```
## Future Plans
## Next
I plan to write about:
1. Software Architecture
2. Design Systems
3. The Zen of Coding
Things worth writing down:
1. GPU kernels
2. Multi-agent systems
3. Research code that survives contact with experiments
<Bibliography items={[
{ id: 'jobs', content: 'Steve Jobs, The New York Times Magazine, 2003' }
]} />