Next.js Starter Template
Clean structure – easy to extend and scale
Blazing fast – optimized build and dev performance
Tailwind CSS & animation ready – with tailwindcss-animate
and framer-motion
Dark & light mode – powered by next-themes
PWA support – via @serwist/next
Developer-friendly – commit linting, formatting, and type checking baked in
Strict code quality – powered by biome
├── public/ # Static assets
├── src/ # App source code
│ ├── app/ # Next.js app directory
│ ├── components/ # Reusable UI components
│ ├── lib/ # Utility functions & configs
├── .husky/ # Git hooks
├── biome.json # BiomeJS config
├── tailwind.config.ts # TailwindCSS config
├── postcss.config.js
└── README.md
# Clone the repo
git clone https://github.com/tanlucvn/minimil
# Install dependencies
pnpm install
# Start development server
pnpm dev