How I Made a Company Matching Platform

December 15, 2025

Example Article

This is an example article to demonstrate the MDX-based writing system. You can write your content in Markdown format with full support for React components.

What is MDX?

MDX is a format that lets you seamlessly write JSX in your Markdown documents. This means you can import and use React components directly in your articles.

Features

Here are some features you can use in your articles:

Code Blocks

You can include code blocks with syntax highlighting:

function greet(name: string): string {
  return `Hello, ${name}!`;
}

console.log(greet("World"));

Lists

Ordered lists work too:

  1. First item
  2. Second item
  3. Third item

Images

You can add images by placing them in the same directory as your article:

Example image description

Conclusion

TBD