A reusable Next.js application created with Template Next.
- Next.js 16 - React framework with App Router
- TypeScript - Type-safe JavaScript
- React Compiler - Enabled in the scaffold
- Tailwind CSS - Utility-first CSS framework
- Turbopack - Fast local development bundler
- Shadcn/ui preset
b1YmqvjRA- Pre-configured component baseline - AGENTS.md - Default guidance for coding agents working in the app
- next-themes - Theme switching support
- Prettier - Code formatting with Tailwind plugin
- Node.js 20.9 or later
- npm
- Install dependencies:
npm install- Run the development server:
npm run dev- Open http://localhost:3000 in your browser.
template-next/
├── src/
│ ├── app/
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── components/
│ │ ├── theme-provider.tsx
│ │ └── ui/
│ └── lib/
├── public/
├── AGENTS.md
├── .prettierrc
├── .vscode/
│ └── settings.json
├── components.json
├── next.config.ts
├── postcss.config.mjs
├── eslint.config.mjs
├── tsconfig.json
└── package.json
This project uses Shadcn/ui. Add new components:
npx shadcn@latest add button
npx shadcn@latest add card
npx shadcn@latest add inputnpm run dev- Start development servernpm run build- Build for productionnpm run start- Start production servernpm run lint- Lint code with ESLintnpm run format- Format code with Prettiernpm run format:check- Check formatting without writing changes
Created with Template Next
MIT License