▲Examples
Next.js Starter Template
Full-featured Next.js template with auth, API routes, and more.
⏱️ 5 min read
Overview
A production-ready Next.js starter with PropTechUSA integration.
Features
- ✅ Next.js 14 (App Router)
- ✅ TypeScript
- ✅ Tailwind CSS
- ✅ PropTechUSA SDK
- ✅ Authentication (NextAuth)
- ✅ Database (Supabase)
- ✅ Form handling (React Hook Form + Zod)
Quick Start
npx create-proptech-app my-app
cd my-app
npm run dev
Project Structure
my-app/
├── app/
│ ├── api/
│ │ └── leads/route.ts
│ ├── dashboard/
│ │ └── page.tsx
│ └── page.tsx
├── components/
│ ├── LeadForm.tsx
│ └── Dashboard.tsx
├── lib/
│ └── proptech.ts
└── ...
Clone Manually
git clone https://github.com/LHBUSA/nextjs-proptech-starter
cd nextjs-proptech-starter
npm install
cp .env.example .env.local
# Add your API keys
npm run dev
View on GitHub →