▲ Full-stack template with Next.js 15. Includes App Router, SSR, and modern tooling.
- Next.js 15 - React framework with App Router
- Turbopack - Next-generation bundler
- TypeScript - End-to-end type safety
- Tailwind CSS v4 + @ras-sh/ui - Modern styling and components
pnpm install
pnpm dev
- Build pages in
app/
with Server Components and SSR - Add components in
app/components/
- Update
package.json
and branding assets
Command | Description |
---|---|
pnpm dev |
Start development server (port 3000) |
pnpm build |
Build for production |
pnpm preview |
Preview production build |
pnpm check-types |
Run TypeScript type checking |
pnpm check |
Run linter checks |
pnpm fix |
Auto-fix linting issues |
app/
├── page.tsx # Home page with Server Components
├── layout.tsx # Root layout and metadata
└── globals.css # Global styles
MIT License - see the LICENSE file for details.