Drop UIXDraft templates into the Next.js App Router as Server Components. Pure HTML/CSS — zero browser-only APIs, SSR-safe from day one.
Get 180+ Templates — $35Next.js App Router renders on the server by default. HTML/CSS templates with no browser APIs are ideal Server Components — no 'use client' directive needed. Add interactivity only where the user actually needs it.
Pure HTML/CSS templates have no side effects, no useEffect, no window references — they render perfectly as Server Components in Next.js 13+.
Next.js generates fully rendered HTML — search engines see all content. Combine with UIXDraft's clean semantic markup for maximum crawlability.
Static sections of your page ship zero JavaScript to the browser. Core Web Vitals scores stay high when templates don't pull in client-side bundles.
All templates work with the older Next.js Pages Router as well. No migration required — same JSX conversion steps as any React project.
| Router | Component Type | How to Use Template |
|---|---|---|
| App Router (Next.js 13+) | Server Component (default) | Paste JSX, no 'use client' needed |
| App Router + interaction | 'use client' component | Add directive at top, add useState |
| Pages Router | React component | Standard class→className conversion |
| Static Export (next export) | Full compatibility | All templates render statically |
Create app/components/Hero.tsx. No 'use client' at the top — this renders on the server by default.
Paste the template HTML inside the return statement. Replace class= with className= and self-close void tags like <img />.
Paste template CSS into app/globals.css or a .module.css file. Import the module in the component for automatic scoping.
Export a metadata object from your page file for SEO. Next.js handles title, description, and og tags automatically.
| Page Type | Recommended Template Style | Rendering |
|---|---|---|
| Marketing / Landing | Static hero + feature grid | generateStaticParams |
| Blog / Docs | Article layout + sidebar | SSG with MDX |
| Dashboard | Sidebar + data table | 'use client' + SWR |
| Product Page | Gallery + CTA | ISR (revalidate) |
Commercial licence · No subscription · Instant download · Lifetime updates
Download All 180+ Templates — $35