Files
Webserver/content/archive/hello-world.mdx
Akshay Kolli 358e9cee4a
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m3s
New blog
2026-06-08 19:31:19 -04:00

49 lines
1.1 KiB
Plaintext

---
title: 'Hello World'
date: '2024-01-01'
description: 'A short MDX smoke test for this site.'
tags: ['site', 'mdx', 'notes']
---
First post for the site. Mostly a smoke test: headings, lists, code blocks, sidenotes, and citations all need to survive the MDX pipeline.
## What this checks
The site is built with:
- **Next.js** for routing and rendering.
- **Tailwind CSS** for the interface.
- **MDX** for posts that need components inline.
## The Detail
The goal is a writing setup that stays plain until a post needs diagrams, notes, or citations. <Citation id="jobs" index={1} />
<SideNote title="MDX note">
This archived post is mostly here to exercise custom components.
</SideNote>
### Code Snippet Test
Here is the font setup pattern:
```typescript
const instrumentSans = Instrument_Sans({
variable: "--font-instrument-sans",
subsets: ["latin"],
display: "swap",
});
```
## Next
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' }
]} />