Back to posts

Hello World: My First MDX Post

2024-05-20

Introduction

Welcome to my new blog! specialized in web development, design, and DevOps.

This blog is built with Next.js and MDX. This allows me to write content using Markdown but also include React components directly in the content.

Code Snippet Example

Here is a small snippet of React code:

import React from 'react';

const Button = ({ children }) => {
  return (
    <button className="bg-blue-500 text-white px-4 py-2 rounded">
      {children}
    </button>
  );
};

Features

  • Fast: Static generation for super fast loading.
  • Easy: Just write markdown files.
  • Customizable: Use React components inside markdown.

Stay tuned for more updates!