Blossend Tech Stack 2026: The Full Architecture Behind six-figure ARR
Complete breakdown of the Blossend Inc tech stack powering OpenMyPro, Noizz.io, and Blossend.com — Next.js 16, Supabase, Vercel, Stripe, and the architecture decisions behind six-figure ARR with 150K+ users.
See this stack in production. 150K+ users. six-figure ARR.
Free forever. Upgrade only when you're ready.
150K+ users · Ex-Amazon Engineer · Healthcare Innovation
No card charged today · 150K+ users · $0 to start
When people ask how a solo founder built six platforms generating six-figure ARR, the answer starts with technology choices. Every architecture decision at Blossend was made to maximize velocity while keeping costs under control. Here is the exact tech stack powering OpenMyPro, Noizz.io, and the entire Blossend ecosystem in 2026.
The Core: Next.js 16 + React 19 + TypeScript
Next.js 16 with the App Router is the backbone of every Blossend product. I chose it because server-side rendering is non-negotiable for healthcare SEO — when someone Googles "therapist near me," they need to hit a pre-rendered page instantly. React 19 Server Components let us fetch data and render HTML on the server without shipping megabytes of JavaScript to the client. TypeScript in strict mode catches entire classes of bugs at compile time that would otherwise reach production.
The App Router's file-based routing eliminates an enormous amount of boilerplate. Each route is a folder, each page is a server component by default, and layouts compose automatically. For a six-platform ecosystem, this reduces cognitive overhead to near zero. I can context-switch between OpenMyPro's booking flow and Noizz.io's discovery feed without reconfiguring anything.
Database Layer: Supabase + PostgreSQL
Supabase is the single most impactful choice in the Blossend stack. It gives us PostgreSQL with Row-Level Security, real-time subscriptions, authentication, edge functions, and storage — all from a single dashboard. For a bootstrapped company, this eliminated the need for five separate services.
PostgreSQL handles our multi-tenant architecture with schema-level isolation. OpenMyPro's patient data, provider profiles, and booking records all live in separate schemas with RLS policies that enforce access control at the database level. Even if application code has a vulnerability, the database itself prevents cross-tenant data leakage. This was essential for HIPAA compliance.
Deployment: Vercel Edge Network
Vercel deploys every push to our GitHub monorepo automatically. Preview deployments on pull requests give us confidence that changes will not break production. The edge network serves content from 30+ global data centers, keeping our Time to First Byte under 100ms for users across the United States. For healthcare where every second of latency costs conversions, this speed is critical.
Payments: Stripe Connect
Stripe Connect handles our marketplace payments where patients pay providers through OpenMyPro. Connected accounts let providers receive payouts directly while Blossend takes a platform fee. Stripe's subscription API powers the SeekerPro $15.99/month provider plan with automatic invoicing, dunning, and webhook-driven status updates.
Styling: Tailwind CSS 4
Tailwind CSS 4 replaced our previous design system with utility-first classes that compile to minimal CSS. The new @theme configuration eliminated our custom PostCSS pipeline. Every component is self-contained with inline styles — no hunting through stylesheets. Mobile-first responsive design scales from 320px phones to 4K displays with sm/md/lg/xl breakpoints.
Security: Cloudflare Turnstile + Google OAuth
Cloudflare Turnstile replaced reCAPTCHA for bot protection without annoying privacy-invasive challenges. Google OAuth provides frictionless sign-in for patients while Supabase Auth handles the session lifecycle. Together they give us enterprise-grade security with zero user friction.
The Architecture Philosophy
Every technology in this stack was chosen for the same reason: maximum output per engineering hour. As a solo founder, I cannot afford to maintain custom infrastructure. Supabase eliminates backend ops. Vercel eliminates deployment ops. Stripe eliminates payment ops. This lets me focus 100% of my engineering time on features that directly generate revenue.
The result is a six-figure ARR business running on approximately $400/month in infrastructure costs. That is a 98.2% gross margin. The tech stack is not just a list of tools — it is a competitive moat that lets a one-person team outship entire engineering departments.