A minimal, modern starter template for full-stack Next.js 15+ projects with:
- ✅
src/directory structure (clean separation of concerns) - 🎨 Tailwind CSS preconfigured (v3.4+)
- 🔮 React 19 support (Client + Server Components)
- 🧠 Zustand for global state management (simple, scalable)
- 🧠 TanStack Query ready for async data and caching
- 🧩 Prisma ORM with
prisma/folder and.env.example - 🛠️ Path aliasing with
@/viatsconfig.json - 🧼
.gitignoreand sensible project defaults - 🧱 App Router with layout and example page (no pages directory)
You can use degit to copy this repo without Git history:
npx degit adeepika1991/nextjs-starter-repo my-new-project
cd my-new-project
npm install
cp .env.example .env
npm run dev