back to blog
Hello, world
1 min read
This is the first post on the blog. The pipeline reads MDX from
src/content/blog/*.mdx, parses the frontmatter with gray-matter, and
renders the body through next-mdx-remote/rsc inside a Tailwind prose
container scoped to the dark theme.
What I'll write about
- LLM application architecture and the unglamorous plumbing around it
- RAG pipelines that survive contact with real corpora
- Agentic systems, evaluation, and developer tooling
A code sample
export function greet(name: string): string {
return `hello, ${name}`;
}
Inline
code, bold, italics, and links all route through the sameprosestyles, so layout stays consistent across posts.
That's it for the placeholder. Replace this file with real writing.