Back

Blog Post sample

js
java
go

We paired with a cutting-edge music API and a team of horticulturalists to build AI-generated playlists that maximize houseplant health.

A bright pink sheet of paper used to wrap flowers curves in front of rich blue background

Exploring Code with MDX

Hello, world! This is a blog post written in MDX. It includes snippets of code in various languages. Let’s dive right into it!

TypeScript Snippet

Let’s start with TypeScript. Here’s a simple function that adds two numbers:

function add(a: number, b: number): number {
    return a + b;
}