A minimal, modern blog built with Next.js 14, MDX, and Tailwind CSS. Perfect for content creators who want to focus on writing.
- Write posts in MDX
- Beautiful, minimal design
- Dark mode support
- Fast page loads
- Fully responsive
- SEO optimized
- Clone this repository
- Install dependencies:
npm install
- Start the development server:
npm run dev
- Open http://localhost:3000 with your browser
- Create a new directory in
src/app/posts/[your-post-slug]
- Add a
page.mdx
file in that directory - Include metadata at the top of your MDX file:
export const metadata = { title: 'Your Post Title', date: 'YYYY-MM-DD', description: 'A brief description of your post', }
- Write your post content in MDX
The easiest way to deploy your blog is to use Vercel:
- Push your code to a Git repository
- Import your repository on Vercel
- Deploy!