Skip to main content

Template Guides

Field notes on shipping Next.js SaaS templates: Stripe webhooks that survive production, Supabase RLS that holds under real load, App Router SEO patterns, AI/RAG pipelines, and pricing pages that convert. Practical, code-anchored writing — no recycled framework history.

Multi-tenant Next.js architecture with Postgres RLS
SupabaseMay 10, 2026

Multi-tenant Next.js architecture with Postgres RLS

Workspaces as the tenant boundary, a workspace_id column on every row, and Postgres RLS as the enforcement layer so a missing WHERE clause in your code cannot leak data across tenants. The B2B architecture decision worth getting right on day one.

7 min read
Read more
ShipFast vs Makerkit: honest 2026 comparison
TemplatesMay 08, 2026

ShipFast vs Makerkit: honest 2026 comparison

Two serious Next.js boilerplates, two different buyers. ShipFast wins on community and solo-maker launch speed; Makerkit wins on multi-tenant depth and TypeScript discipline. A side-by-side on stack, billing, depth, and price, written without a favorite.

7 min read
Read more
What is a SaaS boilerplate? (And when it actually saves you time)
SaaSMay 06, 2026

What is a SaaS boilerplate? (And when it actually saves you time)

A SaaS boilerplate is a pre-built codebase, auth, billing, database, landing, you buy as a starting point. It saves time when the stack and conventions match your product. It costs more than rolling your own when you fight them. A guide to deciding before you pay.

7 min read
Read more
Best stack for shipping a SaaS in 2026
SaaSMay 05, 2026

Best stack for shipping a SaaS in 2026

The default 2026 SaaS stack, Next.js 16, React 19, TypeScript strict, Postgres, Tailwind v4, Stripe or MoR, Vercel. Where the exotic alternatives earn their slot, and the stack debates that do not matter as much as the discourse implies.

7 min read
Read more
Next.js vs Remix for a SaaS in 2026
Next.jsMay 03, 2026

Next.js vs Remix for a SaaS in 2026

Next.js wins by default in 2026, App Router, Server Components, the Vercel story, and ecosystem volume. Remix (now React Router v7) has real strengths in data loading and progressive enhancement. A five-minute decision tree on which to pick for your SaaS.

6 min read
Read more
Building a ChatGPT clone with Next.js + Claude
AIMay 01, 2026

Building a ChatGPT clone with Next.js + Claude

A working chat product in Next.js 16 is three pieces, a streaming Route Handler, a React UI on the Vercel AI SDK, and a thread/messages schema. The hard parts are auth, persistence, and credit metering, not the model call. Written for engineers shipping their first AI product.

7 min read
Read more
RAG starter kit: a guide to shipping retrieval in Next.js
AIApr 29, 2026

RAG starter kit: a guide to shipping retrieval in Next.js

A production RAG pipeline in Next.js is four steps, upload, chunk, embed, retrieve, backed by Postgres with pgvector. The cost shows up at chunking and retrieval quality. Auth and multi-tenant scoping matter as much as embeddings once you charge money.

7 min read
Read more
next-intl tutorial: shipping a multilingual Next.js site
Next.jsApr 27, 2026

next-intl tutorial: shipping a multilingual Next.js site

next-intl is the i18n library most App Router projects pick in 2026. Locale-prefixed routes, messages per language, middleware-based detection. The hard parts are hreflang, locale-aware canonicals, and keeping translations in sync, not the library API.

7 min read
Read more
Why your Next.js 16 build crashes on a missing env var and a 5-line Proxy fix
Next.jsApr 26, 2026

Why your Next.js 16 build crashes on a missing env var and a 5-line Proxy fix

Your production build fails with 'Missing API_KEY' but your runtime works fine. Here is why Next.js collects page data at build time, why naive fixes do not work, and the lazy Proxy pattern that ends it.

9 min read
Read more
SAML SSO in Next.js: the enterprise checklist
Next.jsApr 25, 2026

SAML SSO in Next.js: the enterprise checklist

SAML SSO unlocks the contracts your sales team cannot close without it. The work is correct IdP integration, SP- and IdP-initiated flows, and the audit trail procurement actually reads. Use BoxyHQ Jackson, WorkOS, or Stytch, do not parse the XML yourself.

7 min read
Read more
Best Next.js SaaS boilerplate in 2026: an honest buyer's guide
TemplatesApr 24, 2026

Best Next.js SaaS boilerplate in 2026: an honest buyer's guide

ShipFast, Makerkit, Supastarter, and Boilerlykit compared on stack, billing, multi-tenant, AI, and price. Where each one leads, where each one lags, and how to pick without regret.

10 min read
Read more
Template vs boilerplate for Next.js SaaS (2026)
TemplatesFeb 28, 2026

Template vs boilerplate for Next.js SaaS (2026)

When a paid starter saves you time, when it costs more than rolling your own, and what to audit in the repo before you commit.

9 min read
Read more
Selling templates online: Paddle vs Stripe (and when both)
TemplatesFeb 24, 2026

Selling templates online: Paddle vs Stripe (and when both)

Merchant-of-record vs DIY taxes, chargebacks, and checkout UX. What actually changes for template sellers.

8 min read
Read more
Deploy a Next.js SaaS template on Vercel without drama
LaunchFeb 18, 2026

Deploy a Next.js SaaS template on Vercel without drama

Env groups, webhook URLs, preview vs production domains, and caching surprises that only show up under load.

7 min read
Read more
Supabase Auth plus RLS: keep rows where they belong
SupabaseFeb 16, 2026

Supabase Auth plus RLS: keep rows where they belong

How JWT claims, policies, and schema line up so one workspace never reads another's data by accident.

11 min read
Read more
Next.js App Router auth that does not fight Server Components
Next.jsFeb 14, 2026

Next.js App Router auth that does not fight Server Components

Sessions in cookies, middleware timing, route handlers, and the refresh flow that stops mystery 401s.

9 min read
Read more
Pricing pages that do not bury the lead
LaunchFeb 12, 2026

Pricing pages that do not bury the lead

Plans, limits, annual toggle, and the microcopy around the button people stare at the longest.

8 min read
Read more
Next.js technical SEO checklist (App Router)
SEOFeb 08, 2026

Next.js technical SEO checklist (App Router)

Canonicals, metadata API, sitemap route, robots, OG images, and JSON-LD that matches what users actually see, plus a 2026 update on AI search (GEO) tactics.

10 min read
Read more
Internal links that turn blog traffic into trials
SEOFeb 06, 2026

Internal links that turn blog traffic into trials

Topic clusters, hub pages, and CTAs so search traffic stops dying on orphan posts.

9 min read
Read more
SaaS launch checklist (2026): staging to first customers
LaunchFeb 04, 2026

SaaS launch checklist (2026): staging to first customers

Analytics, billing smoke tests, support paths, and the toggles people flip wrong between staging and prod.

10 min read
Read more
RAG in a SaaS template: what to wire first
AIFeb 02, 2026

RAG in a SaaS template: what to wire first

Upload rules, chunking cost, eval loops, and why auth matters as much as embeddings once you charge money.

11 min read
Read more