A minimal, production-ready Next.js template with App Router and Tailwind CSS.
- ⚡ Next.js 15 with App Router (enabled by default)
- 🎨 Tailwind CSS for styling
- 📱 TypeScript for type safety
- 🔧 ESLint 9 for code quality
- 📱 Responsive design out of the box
- 🌙 Dark mode ready
- 🚀 Latest dependencies for optimal performance
Clone this template:
git clone <your-repo-url> my-project cd my-project
Install dependencies:
npm install
Run the development server:
npm run dev
Open http://localhost:3000 in your browser
npm run dev- Start development servernpm run build- Build for productionnpm run start- Start production servernpm run lint- Run ESLint
├── app/ # App Router directory │ ├── layout.tsx # Root layout │ ├── page.tsx # Home page │ ├── about/ # About page │ └── globals.css # Global styles ├── public/ # Static assets ├── package.json # Dependencies ├── tailwind.config.js # Tailwind configuration ├── tsconfig.json # TypeScript configuration └── next.config.js # Next.js configuration - Edit
app/page.tsxto modify the home page - Update
tailwind.config.jsto customize Tailwind - Modify
app/globals.cssfor global styles - Add new pages in the
app/directory
This template is ready to deploy on Vercel, Netlify, or any other hosting platform that supports Next.js.
MIT License - feel free to use this template for your projects!