Install Next.js
Install Next.js with create-next-app


#1 Create new project

Run in terminal

npx create-next-app@latest

#2 configure settings

Configure your Next.js project

What is your project named? my-app
Would you like to use TypeScript? No / Yes
Would you like to use ESLint? No / Yes
Would you like to use Tailwind CSS? No / Yes
Would you like to use `src/` directory? No / Yes
Would you like to use App Router? (recommended) No / Yes
Would you like to customize the default import alias (@/*)? No / Yes
What import alias would you like configured? @/*

#3 Start the development server

Start the server

cd my-app npm run dev

Done! 🎉
Nice work, you're all set!

Next Step, Tailwind CSS →