Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Battery-packed template / boilerplate to initialize PWA-ready Next.js app with TailwindCSS & TypeScript setup ✨

A full-stack Next.js TypeScript template focused on functionality over UI, featuring Zustand, TanStack Query, and ESLint 9 support.
nextarter-tailwind is a highly opinionated Next.js boilerplate that scaffolds a PWA-ready application using the App Router, Tailwind CSS v4, and TypeScript, with a curated toolchain for code quality and performance.
nextarter-tailwind is an open-source starter template created by Agustinus Nathaniel (@agstnsnathaniel) for initializing Next.js projects. It takes a project name via npx degit and outputs a running Next.js App Router application with React 19, Tailwind CSS v4, Biome linting/formatting, Turborepo, pnpm, and preconfigured SEO tooling. The template is MIT-licensed and deployable to Vercel or Netlify in one click.
next-sitemap preconfigured and metadata utilities built in.src/app) separate from implementation code (src/lib), making the structure easier to maintain.npx degit agustinusnathaniel/nextarter-tailwind <APP_NAME> to create a fresh Next.js app with everything wired up.pnpm build and pnpm release workflows to prepare your application for deployment.pnpm biome:fix for linting/formatting, pnpm type:check for type safety, and pnpm test:e2e for end-to-end tests.Getting started involves three steps. First, initialize a project with npx degit agustinusnathaniel/nextarter-tailwind <APP_NAME>. Second, install dependencies using pnpm install. Third, start the development server with pnpm dev and open http://localhost:3000. The template uses a Lib-Delegation pattern where src/app contains only Next.js entry points and the actual page/layout implementations live in src/lib.
nextarter-tailwind is free to use. It is distributed under the MIT License, allowing personal and commercial use, modification, and redistribution.
Yes, nextarter-tailwind is open-source under the MIT License. You can freely use, modify, and distribute it in personal or commercial projects without paying any fees.
It ships with Next.js App Router, React 19, Tailwind CSS v4, Biome, Turborepo, pnpm, and next-sitemap. It also includes a Lib-Delegation architecture and an AGENTS.md file for AI assistants.
Run npx degit agustinusnathaniel/nextarter-tailwind <APP_NAME>, then cd into the new folder, run pnpm install, and start with pnpm dev. An internet connection is needed to fetch dependencies.
Yes, the repository description states that it is "PWA ready," meaning the template is built as a solid foundation for progressive web apps. You will likely add a web manifest and service worker yourself, but the project structure is set up to support that, and the included SEO metadata handling complements PWA requirements.
It is a structural pattern where the routing layer (src/app) exports only Next.js entry points, and all implementation logic goes into src/lib. This keeps route files clean and delegates page construction to dedicated layout and component modules.
