hextastudio/ui needs your support to stay running 🫶 Help us

Install Next Js

Install Next js with Create Next App CLI

Create new project

bash
npx create-next-app@latest

On installation You'll see these prompts

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

Start the app

bash
cd my-app
npm run dev