A modern SaaS starter kit built with Next.js, Tailwind CSS, and shadcn/ui. Auth, payments, database, and email — all pre-configured so you can skip the setup and start building.
- Framework: Next.js (App Router)
- Styling: Tailwind CSS + shadcn/ui
- Auth: Better Auth (Google, GitHub, email)
- Database: Neon Postgres + Drizzle ORM
- Payments: Dodo Payments
- Animations: Motion
- Email: Resend + React Email
- Runtime: Bun
# Install dependencies
bun install
# Set up environment variables
cp .env.example .env
# Run database migrations
bunx drizzle-kit push
# Start the dev server
bun devsrc/
├── app/ # Next.js App Router pages and API routes
├── components/ # React components (UI, auth, email templates)
├── db/ # Drizzle schema and migrations
└── lib/ # Auth config, utilities
