Skip to content
Web Development23 August 2026 · 10 min read

Webflow + Wized for Reactive Web Apps in 2026

Wized turns a Webflow site into a reactive app, and it works. The catch is where: client-rendered pages vanish from AI answer engines, and Webflow removed its own auth in January 2026.

Webflow + Wized for Reactive Web Apps in 2026

A prospect emailed me in July asking whether a Webflow and Wized reactive app could replace the custom front end I had quoted for them. Reasonable question. The build was a members area with a public supplier directory attached, and on paper that is exactly the shape of product Wized exists for.

I spent an afternoon pricing both options properly. The answer came back yes for half the product and a firm no for the other half, and the line between those halves sits somewhere no comparison post I could find had put it.

Most writing about Wized argues over whether no-code can "really" build applications. Wrong axis. Wized builds applications fine. The argument worth having is about which parts of your product need to be legible to something that is not a logged-in human being.

What Is a Webflow + Wized Reactive App?

A hand lifting a thin transparent acetate sheet a few centimetres above a printed grid card on a sunlit wooden desk, the sheet casting a second soft shadow across the grid, with a coiled cable and a mug nearby

Wized is a visual JavaScript layer that sits on a published Webflow site and makes its static HTML react to data, auth state and API responses. You still design in Webflow. Wized describes itself as the application layer on top of your Webflow project, which is unusually honest positioning for a tool in this category, because it is not a backend and never claims to be.

The mechanics are straightforward. You attach Wized configuration to Webflow elements, define requests against a REST API or a backend-as-a-service, and bind element state to whatever those requests return. Wized's documentation describes workflows as sets of actions and conditionals triggered by element or page events. If you have written React, the mental model transfers immediately: requests are your data layer, the data store is your state, workflows are your event handlers. What you give up is the compiler, the type system and the test runner. What you get back is that a designer can move the button and nothing breaks.

Wized was acquired by Finsweet, who rebuilt it as V2 and brought the original creator, Jonas Beisswenger, on to lead development. Finsweet's stated reason for introducing pricing was making it "a cash flow positive project, ensuring its continued development". That matters more than it sounds, because you are about to put your product's logic inside it.

The builds people ship with it: gated dashboards, course platforms, job boards, booking flows, internal tools, multi-step forms writing into Airtable or Supabase. Anywhere a marketing site would normally need a developer to add behaviour, Wized lets whoever already owns the Webflow project add it instead. That is the real value proposition. If your site never needs behaviour beyond a form post and an automation, you do not need Wized at all, and connecting Webflow to Zapier covers more ground than most people expect it to.

Webflow Killed Its Own Auth, and Wized Inherited the Problem

A brushed metal door lock plate lying on a desk with its cylinder removed, leaving an empty hole punched through the plate, the loose brass cylinder resting on its side beside it next to a closed laptop

On 29 January 2026 Webflow permanently removed native User Accounts, taking access groups and everything built against them along with it.

Webflow announced that sunset alongside Logic, which went first on 27 June 2025, and framed both as an ecosystem-first decision: vetted partners handle memberships, Webflow handles the site. Its own named replacements are Outseta and Memberstack. Whatever you make of the reasoning, the practical outcome is that authentication on a Webflow site is now permanently somebody else's product. Memberstack, Outseta, Supabase Auth, Firebase Auth. Pick one, pay for it, and accept that your login depends on a vendor who is free to make exactly the decision Webflow just made.

This is the part I want a client sitting with before anyone signs anything. A Wized build has three vendors in the critical path before a single line of business logic exists: Webflow for hosting and markup, Wized for the reactive layer, an auth provider for identity. Add a backend and it is four. Each one prices per seat or per domain or per row. Each one can sunset a feature on a Thursday.

Set that against the Pizzeria Bestek build, which sits at the opposite end. React and Supabase, three edge functions, and the restaurant holds every credential: Supabase, Netlify, Resend, the domain, the codebase. It has been running since September 2025 at five to ten orders a day, seven days a week. There is no vendor in a position to sunset it. The ownership question underneath that is the same one that decides whether to use WordPress or a custom website, and it does not get easier at larger scale.

Wized Pricing Is Per Domain, and Elements Are the Cap

A tall glass cylinder packed past its rim with identical pale wooden cubes, several cubes tumbling over the edge onto a beige desk below, one of them chipped and surrounded by fine sawdust

Wized bills per domain, and the limit that actually stops projects is the element count rather than the page-view allowance.

Wized's published pricing, monthly:

PlanPricePage viewsWized elementsDomains
Free$0UnlimitedUnlimitedStaging only
Lite$12100,00020One production domain
Small$39100,000100One production domain
Medium$69200,000400Multiple, wildcard supported
Large$169300,000UnlimitedMultiple, wildcard supported

Read the elements column, not the price column. An element here is any Webflow element Wized is configured against, and a moderately complex dashboard consumes them faster than the plan names suggest. A filter bar with eight inputs, a results list, an empty state, a loading state, a pagination control and a detail modal is not an ambitious feature, and it is not landing inside twenty.

Twenty elements is a proof of concept. A hundred is one real feature done properly. Four hundred is a product. The free tier being staging-only is a fair model rather than a trap, but it is worth knowing before you demo on a webflow.io URL and let a client assume that price carries through to launch.

Is It Actually Low-Code?

Not in the sense the marketing implies: you skip JavaScript syntax entirely and still write JavaScript logic, so the skill requirement barely moves. Conditionals, async sequencing, error branches, state that has to be invalidated when something upstream changes. All of it stays your problem. What goes away is the typing, not the thinking. Hire accordingly.

The SEO Trap Nobody Prices Into a Wized Build

Wized renders client-side, which is harmless behind a login and quietly fatal for any public page that was supposed to be an acquisition asset.

The specific failure runs like this. You build the members dashboard in Wized and it works well. Then you build the public supplier directory in Wized too, because it is the same filtering logic and reusing it is obviously correct. That directory was the entire organic acquisition plan.

Googlebot renders JavaScript, so the directory ranks. The AI answer engines do not render it at all. Vercel and MERJ's 2024 crawler study analysed 569 million GPTBot fetches and found zero JavaScript execution: GPTBot downloaded JavaScript files 11.5% of the time and never ran one. ClaudeBot downloads them 23.84% of the time to the same effect.

So the page sits at position one on Google and hands an empty shell to ChatGPT, Claude and Perplexity on the same afternoon. A 2026 write-up on Webflow JavaScript SEO calls this the split visibility problem, and the name earns its keep, because the two systems genuinely disagree about whether your content exists.

Actually, that overstates it a little. Webflow's own CMS output is static HTML and indexes everywhere without help. The gap opens only where Wized generates content client-side, which happens to be precisely the page you reached for Wized to build. The dynamism is the reason you picked the tool and the reason the tool costs you the traffic.

The rule I use now: anything a stranger must be able to find gets rendered as real HTML, through the Webflow CMS or through a framework. Anything behind a login can be as client-side as you like, because no crawler was getting in there anyway.

When Should You Drop to Next.js Instead?

Drop to Next.js when the public content has to be readable by machines that do not run JavaScript, or when the data model outgrows what a no-code backend can express.

Decision factorWebflow + WizedNext.js custom build
Public pages cited in AI answersPoor, client-renderedStrong, server-rendered HTML
Marketer ships pages without a developerStrongWeak without a CMS layer
Auth and role managementThird-party, extra vendorYours, any provider
Complex relations, joins, migrationsHits a ceiling earlyNo ceiling
Time to first working versionDaysWeeks
Cost shapePer domain, per element, per seatHosting plus your time
Who maintains it in year threeWhoever knows WizedAny React developer

The row that decides most projects is the last one. A Wized app is maintainable by people who know Wized, and that hiring pool is smaller than the React one by a wide margin. Worth pricing honestly if the thing being built is meant to outlive the agency that built it.

These are not exclusive options, and the strongest version of a Webflow app is usually a split. Marketing site and content stay in Webflow where an in-house team can edit them without a deploy. The product surface goes into code. Which system carries the content half is its own decision, and the shortlist of CMS options for a marketing site is where I would start it. If the product half is a genuine SaaS product rather than a dashboard, the design and development process behind a SaaS web platform is a different discipline from configuring a site builder, and pretending otherwise is how six-week projects become six-month ones.

How to Scope a Webflow Wized Reactive App Without Getting Stuck

Before anyone opens the Designer:

  1. List every screen and mark each one either "must be findable by strangers" or "behind a login". Everything in the first column is a Webflow CMS or server-rendering problem, and Wized should not touch it.
  2. Count the Wized elements the largest screen in the second column needs, then multiply by the number of screens. Compare that against the tiers above. If the honest answer is Large, put $169 a month over three years next to a developer's quote and look at both numbers.
  3. Choose the auth provider before the design rather than after it. It shapes the data model, and it is the vendor most likely to change its terms on you.
  4. Pick the backend by the shape of the data. Airtable is fine for flat, spreadsheet-shaped records and stops being fine as row counts climb. Supabase gives you Postgres, real SQL and row-level security, at the cost of needing somebody who can write them.
  5. Build one complete vertical slice first: login, fetch, render, mutate, error state. Two days of work settles arguments that would otherwise get settled in month three, expensively.
  6. Write down what happens if Wized changes hands again or the pricing moves. If the answer is "we rebuild it", carry that rebuild as a real liability in the budget instead of pretending it is zero.

Open your sitemap and highlight every URL that brings you visitors today. If any of them would be rendered by Wized in the build you are considering, that is the conversation to have this week, while the design is still unsigned and the answer is still free. What is on your list?

Free resource

Free SaaS MVP Scope Template

A Notion document with the full feature checklist, MVP vs. nice-to-have table, pre-build questions, and cost signals — so you walk into any developer call knowing exactly what to ask for.

Get the template →
DL

Dusko Licanin

Full-Stack Developer · Banja Luka, Bosnia

Full-stack developer shipping SaaS MVPs, web apps, and mobile apps using AI-augmented workflows — without agency coordination overhead. Live portfolio: BookBed, Callidus, Pizzeria Bestek.

Frequently Asked Questions

Can you build a real web app in Webflow?

Yes, with a third-party reactive layer and a separate backend, because Webflow on its own stops at static pages, forms and CMS content. Since Webflow removed native User Accounts on 29 January 2026, every login on a Webflow site comes from a partner product such as Memberstack, Outseta, Supabase Auth or Firebase. Wized then binds Webflow elements to whatever those services return, and for a signed-in user the result behaves like an application. The honest limit is that you are assembling four vendors, and the app's logic lives in a visual configuration rather than in a repository you can diff, test and roll back.

Wized versus custom code: which is actually cheaper?

Wized is cheaper for the first six months and stops being cheaper somewhere in year two or three, depending on how many elements the app needs. The Large plan is $169 a month for unlimited elements, which lands near $6,000 over three years before the auth provider and the backend are added. That figure is small against a full custom build and large against maintaining code you already own. The variable nobody models is the rebuild. A Wized app does not port anywhere if the tool changes hands or the pricing moves. Code you own ports to whoever you hire next.

What backend should a Webflow SaaS use?

Pick by the shape of the data: Airtable for small, flat, spreadsheet-like records, and Supabase or Xano once you need real relations, row-level security or query control. Airtable stands up fastest and gets slow and expensive as row counts climb. Supabase gives you Postgres, so you write SQL and own the schema, which is more power and more responsibility at the same time. Xano sits between the two with a visual API builder. All three connect to Wized over REST. Whichever you choose, treat it as the layer you must be able to export from, because it holds the data that would genuinely hurt to lose.

Can Webflow connect to an external database?

Not directly, because Webflow has no server-side data layer, so external data reaches the page through client-side JavaScript, a reactive layer like Wized, or a sync tool that writes records into the Webflow CMS. That distinction decides your SEO. Records synced into the CMS publish as static HTML and index everywhere. Data fetched in the browser exists only after JavaScript runs, which Googlebot handles and most AI crawlers do not. So sync it into the CMS if strangers need to find it, and fetch it client-side if it sits behind a login.

Is Wized still maintained after the Finsweet acquisition?

Yes, Finsweet rebuilt it as V2 and brought the original creator on to lead development, and the paid plans exist specifically to fund that work. Staging on a webflow.io domain stays free, while a custom domain requires a subscription. A funded tool is more reassuring than a free one with no revenue behind it, and it does not remove the concentration risk. One small company now owns the reactive layer your product's logic runs on. Price the migration path while nothing is wrong, rather than after an announcement email lands on a Tuesday.