Featured

Hello World

A starter post demonstrating MDX, code blocks, math, and custom components.

1 min read

Welcome to the blog. This post exercises the content pipeline: Markdown, fenced code, math, and custom MDX components.

Code blocks

export function greet(name: string) {
  return `Hello, ${name}!`;
}
 
console.log(greet("Jay"));

Math

Inline math uses E=mc2E = mc^2.

Display math:

01x2dx=13\int_0^1 x^2 \, dx = \frac{1}{3}

Custom components

Demo Project
Project
Example embed for showcasing work inside a blog post.
TypeScriptReactView project

Closing

More posts will land here as the portfolio grows.