Files
Webserver/content/archive/hello-world.mdx

49 lines
1.1 KiB
Plaintext
Raw Normal View History

2026-02-07 20:17:46 -05:00
---
2026-06-08 19:31:19 -04:00
title: 'Hello World'
2026-02-07 20:17:46 -05:00
date: '2024-01-01'
2026-06-08 19:31:19 -04:00
description: 'A short MDX smoke test for this site.'
tags: ['site', 'mdx', 'notes']
2026-02-07 20:17:46 -05:00
---
2026-06-08 19:31:19 -04:00
First post for the site. Mostly a smoke test: headings, lists, code blocks, sidenotes, and citations all need to survive the MDX pipeline.
2026-02-07 20:17:46 -05:00
2026-06-08 19:31:19 -04:00
## What this checks
2026-02-07 20:17:46 -05:00
2026-06-08 19:31:19 -04:00
The site is built with:
2026-02-07 20:17:46 -05:00
2026-06-08 19:31:19 -04:00
- **Next.js** for routing and rendering.
- **Tailwind CSS** for the interface.
- **MDX** for posts that need components inline.
2026-02-07 20:17:46 -05:00
## The Detail
2026-06-08 19:31:19 -04:00
The goal is a writing setup that stays plain until a post needs diagrams, notes, or citations. <Citation id="jobs" index={1} />
2026-02-07 20:17:46 -05:00
2026-06-08 19:31:19 -04:00
<SideNote title="MDX note">
This archived post is mostly here to exercise custom components.
2026-02-07 20:17:46 -05:00
</SideNote>
### Code Snippet Test
2026-06-08 19:31:19 -04:00
Here is the font setup pattern:
2026-02-07 20:17:46 -05:00
```typescript
2026-06-08 19:31:19 -04:00
const instrumentSans = Instrument_Sans({
variable: "--font-instrument-sans",
2026-02-07 20:17:46 -05:00
subsets: ["latin"],
display: "swap",
});
```
2026-06-08 19:31:19 -04:00
## Next
2026-02-07 20:17:46 -05:00
2026-06-08 19:31:19 -04:00
Things worth writing down:
1. GPU kernels
2. Multi-agent systems
3. Research code that survives contact with experiments
2026-02-07 20:17:46 -05:00
<Bibliography items={[
{ id: 'jobs', content: 'Steve Jobs, The New York Times Magazine, 2003' }
]} />