构建一个个人博客

Build a blog from scratch with Next.js and MDX

BuildintermediateUpdated: 2024-02-20

Build a Personal Blog

Overview

In this tutorial, we'll build a fully functional blog using:

  • Next.js App Router
  • MDX for content
  • Tailwind CSS for styling
  • Vercel for deployment

Step 1: Project Setup

npx create-next-app@latest my-blog
cd my-blog

Related Topics