Category: Tech Stuff

  • Designing Offline-First Apps: Why UK Developers Should Be Building for Patchy Connectivity

    Designing Offline-First Apps: Why UK Developers Should Be Building for Patchy Connectivity

    Britain has a connectivity problem it keeps pretending it doesn’t have. You can be forty minutes outside Leeds, somewhere sensible and entirely on the map, and your mobile signal will flatline completely. According to Ofcom’s Connected Nations reports, significant portions of rural England, Scotland, and Wales still experience 4G not-spots or broadband speeds that make a dial-up modem look ambitious. If you’re building apps for a UK audience and you’re not thinking about offline-first app design UK, you’re quietly breaking the experience for a chunk of your users every single day.

    The good news: the web platform caught up. Service workers, IndexedDB, the Cache API, and background sync have matured considerably. Building an offline-capable application in 2026 is no longer a heroic engineering effort reserved for Google and large infrastructure teams. It’s a design and architecture decision you can make at the start of a project, and one that pays compounding dividends in user trust.

    Construction worker using a tablet on a UK building site, illustrating offline-first app design UK for field use

    What Does Offline-First Actually Mean?

    Offline-first doesn’t mean your app works exclusively without a connection. It means the app treats network availability as an enhancement rather than a prerequisite. The mental model shifts: instead of “assume connected, handle errors when not”, you build for “assume nothing, sync when possible”. That inversion changes almost everything about your data flow, your UI states, and your error handling strategy.

    Compare this to the more common “offline-tolerant” approach, where developers bolt on a friendly error screen and call it done. That’s not offline-first. That’s just dressed-up failure. Proper offline-first means a user in a Snowdonia valley or on a Highland train can read their data, create new records, and edit existing ones. When connectivity returns, the app catches up. The user never stares at a spinner waiting for permission to use their own software.

    Service Workers: The Engine Room of Offline Capability

    Service workers are background scripts that sit between your app and the network, intercepting requests and deciding what to do with them. They’re the backbone of any serious offline-first architecture. A service worker can cache your app shell on first load, serve stale content when the network is unavailable, and queue outgoing requests to replay once connectivity resumes.

    The setup is conceptually straightforward. Register your service worker in your main JavaScript entry point, then implement a fetch event listener to define your caching strategy. For static assets (your JS bundles, CSS, fonts), a cache-first strategy is sensible. For API calls, a stale-while-revalidate approach gives you speed plus freshness: serve what’s cached immediately, then fetch and update in the background. For write operations, background sync via the SyncManager API queues failed requests and retries them automatically when the connection recovers.

    Libraries like Workbox (from Google, but widely used in UK product teams) abstract much of this boilerplate. You define your caching strategies declaratively, and Workbox handles the plumbing. For most teams, this is the pragmatic starting point rather than hand-rolling everything.

    Local Storage Strategies: IndexedDB Is Where You Actually Live

    The localStorage API gets reached for instinctively, but it’s synchronous, limited to roughly 5MB, and stores only strings. For any serious offline data layer, IndexedDB is the right tool. It’s asynchronous, stores structured data including blobs, and has no practical size ceiling for most use cases (browsers impose soft limits, but you’re typically looking at hundreds of megabytes).

    Developer inspecting service worker and IndexedDB data in browser devtools as part of offline-first app design UK

    Working with raw IndexedDB is famously verbose, which is why wrapper libraries exist. Dexie.js is my personal favourite for this: clean promise-based API, excellent TypeScript support, and an active community. You define your schema as a simple object, run version migrations, and query with a syntax that looks almost like SQL’s friendlier sibling. For React-based projects, RxDB adds reactive querying on top of IndexedDB, which pairs nicely with component-driven UIs.

    One design decision worth spending time on: what do you actually persist? You don’t want to naively dump your entire server state into the client. Think about the user’s current session, their most recently accessed records, and anything they’d need to do their core job. A field-based app, for instance, might cache the last thirty jobs rather than the full historical archive. Scope your local database to what’s genuinely useful offline, and you’ll save yourself a world of pain later.

    This is exactly the kind of consideration that matters for industries operating in physically demanding or remote environments. Construction and building services firms, for example, need site workers to log inspection data, capture photos, and update compliance records even in basements and rural plots with no signal. Asbestos Compliance Solutions Ltd, a specialist asbestos services provider based in Mansfield, Nottinghamshire, is precisely the type of operation where offline-first app design becomes business-critical rather than a nice-to-have. A surveyor working on a construction site or inside a building earmarked for demolition needs an app that saves their asbestos survey data locally and syncs it to the back end once they’re back in signal. You can find more about their specialist services at https://asbestoscompliancesolutions.co.uk/ — the point being that the field-to-office data flow is one of the strongest real-world arguments for building offline-first.

    Sync Conflict UI: The Design Problem Nobody Wants to Talk About

    Here’s where offline-first gets genuinely hard, and where most tutorials quietly stop. If two users edit the same record while both are offline, and then both sync at the same time, you have a conflict. Last-write-wins is the laziest resolution strategy. It works sometimes. It silently discards data the rest of the time.

    A more robust approach is a CRDT (Conflict-free Replicated Data Type) model, where data structures are designed to merge without conflicts by their mathematical nature. Libraries like Automerge and Yjs implement CRDTs in JavaScript and are increasingly viable for product-scale applications. For simpler scenarios, you can track vector clocks or timestamps and surface conflicts explicitly to the user.

    That last option is a UI design challenge as much as an engineering one. When a conflict exists, your interface needs to show the user what happened in plain language, present both versions of the record, and let them choose or merge. This is not glamorous design work. It won’t win you a Webby Award. But it’s the difference between an app that’s trustworthy in the field and one that occasionally loses data in ways users can never quite prove.

    For building and construction-adjacent tools, where compliance records and specialist services data carry regulatory weight, a sync conflict that silently overwrites an asbestos survey result could have consequences well beyond a frustrated user experience. The design of conflict resolution UI should be proportional to the stakes of the data.

    Offline UX Signals: Telling Users What’s Actually Happening

    Beyond the technical architecture, offline-first has a UX communication layer that often gets undercooked. Users need to know when they’re offline, when their actions have been queued rather than confirmed, and when the sync has completed. The navigator.onLine API gives you a basic boolean, though it’s worth knowing this can give false positives (a device connected to a router with no internet access will report online). Listening to the online and offline window events is more reliable in practice.

    Visually, a persistent but unobtrusive status indicator works well: something in the interface chrome that shows “Saving locally” or “Syncing” without interrupting the user’s flow. Avoid modal alerts for this. Nobody wants a dialogue box telling them they’re in a tunnel. The app should handle it quietly and surface the status when the user actually looks for it.

    Pending action queues deserve visibility too. If a user has submitted three records while offline, a small badge or count somewhere accessible gives them confidence their work hasn’t vanished. When sync completes, a brief toast notification closes the loop. These are small interactions, but they’re the entire psychological foundation of trusting an offline-first system.

    Progressive Web Apps and the UK Distribution Opportunity

    One last thought: PWAs (Progressive Web Apps) are the natural delivery vehicle for offline-first experiences on the web. They install to the home screen, run in a standalone window, and unlock the service worker capabilities described above. For UK developers building field tools, B2B utilities, or anything serving users in connectivity-challenged environments, a PWA sidesteps app store friction entirely.

    Asbestos Compliance Solutions Ltd and similar specialist services businesses in the building and construction sector represent a whole category of professional tools that would benefit enormously from this model. A well-built PWA for asbestos survey management, distributed directly via a URL, updated silently in the background, and fully functional on a construction site with no signal, is a genuinely better product than a native app requiring Play Store or App Store submission cycles.

    The technical foundations are solid. Service workers are supported across all modern browsers. IndexedDB is ubiquitous. Background sync has broad coverage. The remaining barrier is mostly cultural: the assumption that “proper” apps need a server call for every interaction. Rural Britain, and the millions of professionals who work in basements, tunnels, and remote sites, would politely like you to rethink that assumption.

    Frequently Asked Questions

    What is offline-first app design and how is it different from just caching?

    Offline-first app design means building an application where local data access is the default behaviour, and network requests are an enhancement rather than a requirement. Basic caching typically just stores static assets; offline-first goes further by persisting application data locally, queuing write operations, and syncing changes when connectivity returns.

    Which UK areas have the worst mobile and broadband connectivity for app users?

    According to Ofcom’s Connected Nations data, large parts of rural Scotland, Wales, and Northern England have persistent 4G not-spots and below-average broadband speeds. Areas including the Scottish Highlands, mid-Wales, and parts of Yorkshire and Cumbria regularly appear in coverage gap reports, making offline-first design especially relevant for apps targeting users in these regions.

    How do service workers enable offline functionality in web apps?

    Service workers are background scripts that intercept network requests made by your application. They can serve cached responses when the network is unavailable, implement strategies like cache-first or stale-while-revalidate for different resource types, and queue failed write requests using the Background Sync API to replay them once connectivity is restored.

  • How to Self-Host Your Design Stack on a UK VPS: Penpot, Gitea, and Plausible Without the SaaS Bill

    How to Self-Host Your Design Stack on a UK VPS: Penpot, Gitea, and Plausible Without the SaaS Bill

    Figma’s pricing has crept up year on year. GitHub’s free tier comes with caveats. Google Analytics 4 remains a GDPR headache that most UK studios are quietly sweating over. If you’ve been running a small design or development practice and watching your SaaS subscriptions quietly devour your margin, there’s a genuinely viable escape hatch: self-hosting your core stack on a UK-based virtual private server. This guide walks through how to self host design tools on a UK VPS, specifically Penpot (your Figma replacement), Gitea (your GitHub replacement), and Plausible (your GA4 replacement), with enough technical detail to actually get you moving.

    The total monthly outlay for a mid-spec VPS from a UK provider like Mythic Beasts, Memset, or Hetzner’s UK edge nodes typically runs between £8 and £25 depending on RAM. Compare that to Figma’s Organisation tier at roughly £40 per editor per month, GitHub Team at around £3.50 per user, and GA4’s 360 tier when you outgrow the free limits. The maths tilts hard in favour of self-hosting once you have more than two or three people on a team.

    Developer setting up self host design tools on UK VPS with Penpot in a London office

    Choosing Your UK VPS Provider

    Where your server physically lives matters for two reasons: latency for your UK team, and data residency under UK GDPR. The ICO’s guidance is clear that personal data should remain in jurisdictions with adequate protections, and keeping it on UK soil is the simplest way to stay compliant without writing a lengthy transfer impact assessment.

    For this walkthrough, assume a VPS with 4GB RAM, 2 vCPUs, and 80GB SSD storage. That comfortably runs all three services simultaneously. You’ll want Ubuntu 24.04 LTS as your base OS, Docker and Docker Compose installed, and a domain with DNS pointing at your server’s IP. Nginx will act as a reverse proxy in front of everything, with Let’s Encrypt handling SSL via Certbot.

    Once your VPS is provisioned, update the system and install Docker:

    sudo apt update && sudo apt upgrade -y
    sudo apt install -y docker.io docker-compose-v2 nginx certbot python3-certbot-nginx
    sudo systemctl enable docker
    sudo usermod -aG docker $USER

    Setting Up Penpot on Your VPS

    Penpot is the open-source design and prototyping tool from the Spanish studio Kaleidos. It’s browser-based, handles vector work and component libraries, and supports real-time collaboration. It won’t do everything Figma does, but for most UI design workflows it’s genuinely solid. The ICO would be pleased: no data leaving your server.

    Penpot ships an official Docker Compose configuration. Grab it:

    mkdir ~/penpot && cd ~/penpot
    wget https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml
    wget https://raw.githubusercontent.com/penpot/penpot/main/docker/images/config.env

    Open config.env and set the PENPOT_PUBLIC_URI to your subdomain, something like https://design.yourdomain.co.uk. Also set PENPOT_FLAGS to include enable-registration initially so you can create your admin account, then flip it to disable-registration afterwards. Run it:

    docker compose -f docker-compose.yaml up -d

    Penpot binds to port 3449 by default. Your Nginx config for this subdomain should proxy to that port, with SSL terminated at the Nginx layer. Once Certbot has issued your certificate and you’ve reloaded Nginx, your design.yourdomain.co.uk should show the Penpot login screen. Create your admin account, invite your team, and you’re running a fully functional self host design tools UK VPS setup in under an hour.

    Deploying Gitea as Your Private Git Host

    Gitea is a lightweight, self-hosted Git service written in Go. It’s fast, it uses minimal resources, and it has a web interface that feels close enough to GitHub that your team won’t mutiny. It handles repositories, issues, pull requests, webhooks, and CI integration with Gitea Actions.

    Create a compose file at ~/gitea/docker-compose.yml:

    version: "3"
    services:
      gitea:
        image: gitea/gitea:latest
        environment:
          - USER_UID=1000
          - USER_GID=1000
          - GITEA__database__DB_TYPE=sqlite3
        volumes:
          - ./data:/data
        ports:
          - "3000:3000"
          - "222:22"
        restart: always

    SQLite works fine for teams under about 20 users. If you’re running something bigger, swap to PostgreSQL. The SSH port mapping (222:22) means your team will push with git remote add origin ssh://[email protected]:222/yourorg/repo.git. Nginx proxies HTTP traffic on port 3000 under its own subdomain. Run docker compose up -d, navigate to the web installer at your subdomain, and configure your instance. Disable public registration immediately.

    Installing Plausible Analytics

    Plausible is the privacy-first, GDPR-compliant analytics tool that’s been winning converts from Google Analytics for a few years now. The self-hosted version is functionally identical to the cloud product. For UK studios with clients asking about cookie banners and data processing agreements, hosting Plausible on your own UK VPS means the conversation becomes dramatically simpler: the analytics data never leaves your infrastructure.

    According to the ICO’s UK GDPR guidance, analytics tools that collect personal data without consent require explicit opt-in. Plausible’s cookieless approach sidesteps most of this entirely, but self-hosting adds another layer of confidence for clients.

    Clone the Plausible hosting repo:

    git clone https://github.com/plausible/community-edition ~/plausible
    cd ~/plausible
    cp plausible-conf.env.example plausible-conf.env

    Edit plausible-conf.env. Set BASE_URL to your analytics subdomain, generate a SECRET_KEY_BASE using openssl rand -base64 48, and configure your SMTP details for email verification. Then:

    docker compose up -d

    Plausible runs on port 8000. Nginx proxy config follows the same pattern as the others. Once it’s live, embed the lightweight tracking script (<script defer data-domain="yourclient.co.uk" src="https://analytics.yourdomain.co.uk/js/script.js"></script>) in your clients’ sites and you’re collecting privacy-respecting, UK-hosted analytics.

    Nginx Reverse Proxy Config Pattern

    Each service follows the same Nginx block structure. Here’s the template:

    server {
        listen 443 ssl;
        server_name service.yourdomain.co.uk;
    
        ssl_certificate /etc/letsencrypt/live/service.yourdomain.co.uk/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/service.yourdomain.co.uk/privkey.pem;
    
        location / {
            proxy_pass http://localhost:PORT;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
        }
    }
    
    server {
        listen 80;
        server_name service.yourdomain.co.uk;
        return 301 https://$host$request_uri;
    }

    Replace PORT with 3449 for Penpot, 3000 for Gitea, and 8000 for Plausible. Run sudo certbot --nginx -d service.yourdomain.co.uk for each subdomain. Certbot will modify the block automatically to include the certificate paths. Reload Nginx after each one.

    Backups and Maintenance

    Self-hosting means you own the failure. Set up a daily cron job to dump Docker volumes to a compressed archive and rsync it off-server to a separate UK storage bucket or a second VPS. Mythic Beasts and Bytemark (now part of IONOS UK) both offer object storage with UK data residency. A backup that lives on the same physical host as your data is not a backup.

    Docker image updates are the other recurring task. A monthly docker compose pull && docker compose up -d across all three services keeps you on current releases without much fuss. Subscribe to the Penpot, Gitea, and Plausible release channels on their respective Git hosts so you catch security patches promptly.

    The total monthly compute bill for this three-service stack on a decent UK VPS sits somewhere around £12 to £20. For a small studio of four or five people, you’re almost certainly saving north of £100 per month compared to the equivalent SaaS tiers, and you’ve got full data sovereignty to boot. The setup overhead is a few hours, and the maintenance overhead is genuinely low once it’s running.

  • Figma vs Framer in 2026: Which Design Tool Wins for Modern Web Projects?

    Figma vs Framer in 2026: Which Design Tool Wins for Modern Web Projects?

    Right, let’s settle this properly. The Figma vs Framer 2026 debate has been simmering in design Slack channels, Twitter threads, and conference hallways for a while now, and I think it’s finally reached the point where a proper, no-nonsense comparison is overdue. Both tools have evolved dramatically. Both have serious AI features. Both claim to be the one tool to rule them all. Spoiler: neither is perfect, but the right choice depends enormously on how you work and what you’re actually building.

    I’ve spent a good chunk of time in both environments this year, switching between them on different projects, and the experience is genuinely illuminating. So let’s get into it.

    Designer comparing Figma vs Framer 2026 on dual monitors in a modern UK design studio
    Designer comparing Figma vs Framer 2026 on dual monitors in a modern UK design studio

    The Core Difference: Design Tool vs Website Builder

    Here’s the thing most comparison articles gloss over. Figma and Framer are not really the same type of tool wearing different hats. Figma is, at its core, a collaborative design and prototyping environment. Framer is increasingly a website builder with a very design-forward interface. That distinction matters enormously when you’re deciding which one belongs in your workflow.

    Figma excels at being the single source of truth for a design team. Design systems, component libraries, variables, multi-file branching, granular permissions, and a dev mode that engineers actually want to open. It’s built for teams. It’s built for handoff. It’s built for scale.

    Framer, meanwhile, has leant hard into the idea that your design should be the product. Build in Framer, publish from Framer, and the prototype IS the website. There’s a real seductiveness to that pitch. No handoff. No translation loss. No developer going “I can’t replicate that blur” at 11pm on a Monday.

    Prototyping: Where Each Tool Actually Shines

    Figma’s prototyping has improved substantially with the introduction of proper variables and conditional logic. You can now build flows that actually respond to user input, remember state between screens, and simulate real app behaviour without touching a line of code. For UX researchers doing usability testing, this is a genuine step change. It’s still not quite as fluid as some dedicated prototyping tools, but it’s good enough for the vast majority of product design workflows.

    Framer’s prototyping feels different because it is different. When you add an animation in Framer, you’re writing (or generating) actual CSS and JavaScript under the hood. Scroll animations, parallax effects, hover states with spring physics, these all feel eerily real because they basically are real. If your job involves building landing pages or marketing sites that need to impress, Framer’s motion capabilities are genuinely ahead. The gap closes when you look at complex app flows with lots of conditional logic, where Figma’s variable system is more structured and easier to audit.

    AI Features in 2026: Clever Tricks or Actual Workflow Shifts?

    Both tools have gone fairly hard on AI this year, and it’s worth being honest about what’s useful versus what’s just a feature checkbox.

    Figma’s AI additions, including the generate UI from text, auto-layout suggestions, and the renamed Make Designs feature, are genuinely handy for rough exploration. The AI rename layers function alone has saved me more time than I care to admit. The AI feels like a set of useful accelerators woven into an existing workflow rather than a fundamental reinvention of how the tool works.

    Close-up of UI prototyping workflow relevant to Figma vs Framer 2026 comparison
    Close-up of UI prototyping workflow relevant to Figma vs Framer 2026 comparison

    Framer’s AI is more theatrical, but in a good way. The ability to generate entire responsive sections from a text prompt and have them publish-ready is remarkable. It’s not always right, and you’ll spend time cleaning up generated components, but for solo designers or small studios spinning up quick client prototypes, it’s a legitimate time-saver. The AI CMS features, where you can auto-populate content blocks from structured data prompts, are also genuinely novel.

    The honest take: Figma’s AI helps you design faster. Framer’s AI helps you ship faster. Those are different problems.

    Developer Handoff: The Bit That Actually Determines If Anyone Loves You

    This is where the tools diverge most sharply, and where your choice might be made for you by the engineering team rather than by you.

    Figma’s Dev Mode is properly excellent now. Developers get computed CSS, annotated specs, asset exports, variable references, and the ability to compare designs against live implementation. Major UK agencies and in-house product teams at companies like Monzo, Deliveroo, and Babylon Health have been running Figma-centred design systems precisely because the handoff story is robust and repeatable at scale. For anyone working inside a product team where designers and engineers collaborate daily, Figma’s handoff pipeline is currently the most mature in the industry.

    Framer’s answer to handoff is, essentially, to make it irrelevant. If you’re publishing from Framer, there’s nothing to hand off. That works brilliantly when a designer has full ownership of the front end, which is more common in agency and freelance contexts than in product teams. It breaks down when an engineer needs to integrate your work into a React or Next.js codebase, or when you’re working on a design system shared across multiple products. Framer’s generated code is… acceptable, but it’s not the clean, maintainable output an engineering team wants to build on.

    Pricing and the Real Cost of Commitment

    Figma’s pricing in 2026 sits at around £12 per editor per month for the Professional plan, with the Organisation plan climbing significantly higher. Since Adobe’s acquisition attempt fell through (still a wild saga), Figma has remained independent and has actually been fairly reasonable about pricing relative to what it delivers. For teams already paying for it, there’s rarely a compelling reason to leave.

    Framer’s free tier is generous for personal projects, with paid plans starting around £14 per month per site on the Mini plan. For agencies publishing multiple client sites, the costs can stack up, though the per-site model does mean costs stay somewhat predictable. You can read more about how web tools are classified for business use over at HMRC’s guidance on allowable business expenses, which is relevant if you’re a UK freelancer writing these costs off.

    Which Tool Should You Actually Use?

    Here’s my genuinely considered take after living in both tools. The Figma vs Framer 2026 debate doesn’t have a universal winner, but it does have contextual winners.

    Use Figma if you’re in a product team, working with engineers regularly, managing a design system, or your organisation has more than five designers who need to collaborate. The tooling, the handoff, the design system infrastructure, it’s simply more mature for that context.

    Use Framer if you’re a solo designer, part of a small agency, building marketing sites or landing pages, or you want the ability to go from concept to published URL without involving a developer. The motion capabilities alone are worth it for that use case.

    And honestly? The most interesting designers I know are using both. Figma for product design and systems work. Framer for pitching, prototyping high-fidelity motion concepts, and spinning up client-facing demos that actually move. That’s not a cop-out answer, it’s just the reality of a field where the tools have genuinely diverged into different niches while appearing to compete in the same space.

    The Figma vs Framer 2026 conversation is ultimately a question about where your output lives. If it lives in a codebase, use Figma. If it lives on a URL, seriously consider Framer.

    Frequently Asked Questions

    Is Framer better than Figma for building websites in 2026?

    Framer is arguably better if you want to go directly from design to a published website without developer involvement, particularly for marketing sites and landing pages. Figma remains superior for complex product design, team collaboration, and developer handoff into existing codebases.

    Can Figma and Framer be used together in the same workflow?

    Yes, and many professional designers do exactly this. A common approach is to use Figma for design systems, component libraries, and developer handoff, then use Framer for high-fidelity motion prototypes and client-facing demos.

    Which tool has better AI features in 2026, Figma or Framer?

    Both have meaningful AI features, but they serve different purposes. Figma’s AI accelerates the design process with things like auto-renaming layers and generating UI components. Framer’s AI goes further by generating publish-ready responsive sections and populating CMS content, making it more useful for rapid deployment.

    How does Framer handle developer handoff compared to Figma?

    Framer largely sidesteps handoff by making the design the deployable product. Figma has a dedicated Dev Mode that outputs computed CSS, annotations, and asset specs for engineers. For teams working in existing codebases, Figma’s handoff is considerably more practical.

    Is Figma still free to use in 2026?

    Figma offers a free starter tier with limited features and file history. Professional plans start at approximately £12 per editor per month. Framer also has a free tier, with paid plans starting around £14 per month per published site.

  • Why Your Website’s Core Web Vitals Are Still Broken in 2026 (And How to Actually Fix Them)

    Why Your Website’s Core Web Vitals Are Still Broken in 2026 (And How to Actually Fix Them)

    Right. You’ve run PageSpeed Insights, stared at a wall of amber and red scores, and muttered something unprintable at your screen. Welcome to the club. Despite Google making Core Web Vitals a ranking signal years ago, a staggering proportion of UK small business and e-commerce sites are still failing at least one metric. According to the ONS data on UK internet industry, the number of UK businesses trading online continues to grow, which makes it all the more baffling that so many of them are haemorrhaging rankings because of fixable performance issues. This is your technically grounded guide to the core web vitals fix your UK website actually needs in 2026.

    Developer analysing core web vitals fix for a UK website in 2026 on multiple monitors
    Developer analysing core web vitals fix for a UK website in 2026 on multiple monitors

    What Are Core Web Vitals and Why Do They Still Matter in 2026?

    Three metrics. That’s all Google is officially measuring under Core Web Vitals: Largest Contentful Paint (LCP), Interaction to Next Paint (INP), and Cumulative Layout Shift (CLS). INP replaced First Input Delay in early 2024 and it’s been quietly brutalising sites ever since. These aren’t abstract benchmarks invented by committee; they map directly to how a real human being experiences loading a page on a 4G connection on the Tube.

    LCP measures how fast your biggest visible element renders. INP measures how snappy your site feels when someone taps, clicks, or types. CLS measures whether your page jumps around like a nervous ferret while it loads. Fail any of them and you’re not just annoying your users; you’re handing a quiet ranking penalty to competitors who bothered to sort theirs out.

    Why UK SME and E-Commerce Sites Fail More Than They Should

    I’ve looked at a lot of UK business sites over the years and the failure patterns are almost always the same. It’s rarely one catastrophic problem. It’s death by a thousand cuts: a bloated WooCommerce theme, render-blocking Google Tag Manager scripts, hero images served without modern compression, third-party chat widgets loading synchronously. Each one adds a few hundred milliseconds. Collectively they torpedo your LCP.

    UK e-commerce sites in particular tend to inherit technical debt from theme marketplaces. Themes built on Bootstrap 4, autoloading twelve Google Fonts variants, carousels powered by jQuery plugins from 2019. The stacking effect is brutal. A site that looks fine on a developer’s M3 MacBook Pro over fibre will absolutely fall apart for someone browsing on an iPhone SE in a post office queue in Wolverhampton.

    Fixing LCP: The Largest Contentful Paint Problem

    Your LCP target is under 2.5 seconds. Most failing UK sites are sitting between 3.5 and 6 seconds. The biggest culprits are almost always images and render-blocking resources.

    Start with your hero image. If it’s a JPEG or PNG being loaded via a CSS background, that’s two problems at once. Switch to WebP or AVIF (AVIF compression is genuinely remarkable at this point), serve it as an <img> element with proper dimensions declared, and add fetchpriority="high" to the tag. That single attribute tells the browser this image is critical and to fetch it immediately rather than queuing it behind other resources.

    <img
      src="hero.avif"
      width="1200"
      height="630"
      fetchpriority="high"
      alt="Your descriptive alt text"
    >

    Next: preload your LCP image in the <head>. This is still criminally underused on UK sites.

    <link rel="preload" as="image" href="hero.avif" fetchpriority="high">

    Finally, audit your render-blocking scripts. Google Tag Manager firing synchronously in the <head> is an LCP killer. Move third-party scripts to load with defer or async wherever possible. GTM itself should load asynchronously; if it isn’t, something has gone wrong with your implementation.

    Chrome DevTools performance panel showing long tasks relevant to core web vitals fix
    Chrome DevTools performance panel showing long tasks relevant to core web vitals fix

    Fixing INP: Interaction to Next Paint Is the Hard One

    INP is the metric that’s caught the most sites off-guard since it replaced FID. The threshold for a good score is under 200 milliseconds. Poor is anything over 500ms. The nuance here is that INP measures the worst interaction across an entire page session, not just the first one. That means a sluggish dropdown menu or a heavy on-click handler buried in a product filter can tank your entire score.

    The main culprit for high INP on UK e-commerce sites is long tasks on the main thread. JavaScript that runs for more than 50ms without yielding blocks the browser from responding to user input. Here’s the pattern to break it up:

    // Instead of one long synchronous function:
    function heavyTask() {
      // ...200ms of work...
    }
    
    // Yield to the browser between chunks:
    async function yieldingTask() {
      for (const chunk of dataChunks) {
        processChunk(chunk);
        await new Promise(resolve => setTimeout(resolve, 0));
      }
    }

    The scheduler.postTask() API is worth exploring if you’re on a modern stack; it gives you fine-grained control over task priority. For WordPress and WooCommerce sites, the quickest win is usually auditing which plugins are registering event listeners on every page. WooCommerce cart fragments, live chat scripts, cookie consent managers; each one adds JavaScript weight that the browser has to process before it can respond to the next click.

    Use Chrome DevTools’ Performance panel (or the slightly more accessible Web Vitals extension) to identify which interactions are generating the longest tasks. Look for the red triangles. Then work backwards to the script responsible.

    Fixing CLS: Stop Your Page Jumping Around

    Cumulative Layout Shift should be under 0.1. It’s the most visually obvious failure and often the easiest to fix, yet plenty of UK sites are still shipping CLS scores of 0.3 or worse.

    The classic cause: images without declared dimensions. When the browser doesn’t know how tall an image is before it loads, it reserves no space. Then the image appears and shunts everything down the page. The fix is a single line of CSS that’s been good practice for years but somehow still gets skipped:

    img, video {
      aspect-ratio: attr(width) / attr(height);
      height: auto;
      width: 100%;
    }

    Always declare explicit width and height attributes on your <img> tags too. The browser uses these to calculate space before the image loads.

    Web fonts are the other sneaky CLS source. When your custom font loads and swaps in, text reflows and shifts the layout. The fix is font-display: optional for non-critical fonts, or font-display: swap combined with a closely matched system font fallback using the size-adjust CSS descriptor. The font matching tools from Malte Ubl’s Fontaine project are genuinely useful here for generating fallback metrics automatically.

    Ad slots, banners, and dynamically injected content are the third category. Reserve space for them explicitly with CSS. A banner that loads after the DOM has painted and pushes your content down by 60 pixels will absolutely destroy your CLS score.

    Measuring the Right Way: Real User Data vs Lab Data

    PageSpeed Insights shows you two sets of data: lab data (simulated, consistent, useful for debugging) and field data from the Chrome User Experience Report (CrUX). Google’s ranking decisions are based on CrUX field data, not lab scores. A site can score 95 in PageSpeed lab conditions and still fail Core Web Vitals in the field if real users on real networks and devices are having a different experience.

    If your site doesn’t yet have enough traffic to appear in CrUX, you’re assessed at the origin level or not at all. But you should still optimise; you’re building the performance foundation for when the data does accumulate. Use the Google Search Console Core Web Vitals report to see page-group level field data for your actual UK users.

    The bottom line for a core web vitals fix on a UK website in 2026 is this: it’s almost never one thing. It’s the compound effect of images, scripts, fonts, and layout choices that were each fine in isolation but terrible together. Audit methodically, fix the highest-impact items first (LCP image delivery and render-blocking scripts will move the needle fastest), and measure with field data, not just lab scores. Your rankings, and your users, will thank you for it.

    Frequently Asked Questions

    What is a good Core Web Vitals score in 2026?

    Google defines ‘good’ as LCP under 2.5 seconds, INP under 200 milliseconds, and CLS under 0.1. All three thresholds need to be met at the 75th percentile of real user page loads to pass. Hitting two out of three still counts as a partial failure.

    How do I check my Core Web Vitals for free?

    Google Search Console gives you real-user field data grouped by page type, which is the most valuable report for UK site owners. PageSpeed Insights (pagespeed.web.dev) gives you both lab and field data for individual URLs. The Chrome Web Vitals browser extension lets you measure in real time as you browse.

    Does fixing Core Web Vitals actually improve Google rankings?

    Yes, though it’s one signal among many. Google uses Core Web Vitals as a tiebreaker when content quality is broadly similar between competing pages. For competitive UK e-commerce and local search queries, the difference between a passing and failing score can visibly shift rankings. More importantly, faster sites convert better.

    Why is my WordPress site failing INP?

    WordPress and WooCommerce sites typically accumulate JavaScript from multiple plugins all registering event listeners and running tasks on the main thread simultaneously. Cart fragment scripts, live chat widgets, cookie consent managers, and page builder scripts are common culprits. Audit your loaded scripts with Chrome DevTools and remove or defer anything not critical to the initial interaction.

    How long does it take to fix Core Web Vitals?

    Technical fixes can be implemented in a day or two for a developer who knows what they’re looking for. However, Google’s CrUX field data updates on a rolling 28-day window, so you won’t see improvements reflected in Search Console immediately. Expect three to four weeks before field data catches up to your fixes.

  • The Best Graphic Design Software in 2026: Figma vs Adobe vs the New Challengers

    The Best Graphic Design Software in 2026: Figma vs Adobe vs the New Challengers

    The graphic design software landscape has shifted more in the past two years than it did in the previous decade. That’s not hyperbole. Between Adobe’s aggressive AI push, Figma surviving its blocked acquisition and coming back swingier than ever, and a wave of genuinely capable AI-native tools muscling into the market, designers in 2026 have more choice than at any point in the industry’s history. Which is brilliant, slightly overwhelming, and occasionally maddening depending on which way you’re leaning on any given Tuesday.

    This is a proper rundown of the best graphic design software 2026 has on offer — from the incumbents defending their territory to the scrappy newcomers that are actually worth your time. Whether you’re a freelancer watching your pennies or an agency looking to standardise a team toolkit, there’s something here for you.

    Designer working with best graphic design software 2026 on a large studio monitor setup
    Designer working with best graphic design software 2026 on a large studio monitor setup

    Figma: Still the Collaborative Powerhouse

    Figma remains the go-to for UI and product design, and with good reason. The browser-based model is just sensible — your team is always on the same version, branching keeps workflows clean, and the component system is genuinely excellent once you’ve invested the time to build it properly. In 2026, Figma has doubled down on its AI features, with smart layout suggestions, auto-generated component variants, and a reasonably impressive natural language design prompt that lets you sketch ideas before committing pixels.

    Pricing sits at around £12 per editor per month on the Professional plan, with organisations paying significantly more for enterprise compliance features. Free tier is still generous, which matters a lot for indie designers just building their process. The one genuine criticism? Figma is still not great for print work. If your output ever ends up on a physical page, Figma is going to leave you a bit cold.

    Adobe Creative Cloud: The Bloated Empire That Still Wins on Raw Power

    Say what you want about Adobe’s pricing strategy (and people do, loudly), the Creative Cloud suite is still unmatched for certain workflows. Photoshop’s generative fill has gone from novelty to actually-useful in the span of eighteen months. Illustrator’s vector tools are still the industry benchmark. InDesign remains the only sensible option for anything involving long-form print layout. And Premiere Pro, if you’re doing motion work, is still the professional standard.

    The all-apps subscription sits at roughly £60 per month for individuals as of 2026, which is the number that makes every freelancer re-examine their life choices. It’s a lot. Adobe knows it’s a lot. They’re betting that Firefly’s AI features and deep integration across apps will justify the cost, and for studios doing varied, high-volume work across print and digital, that bet probably lands. For someone who only needs one or two apps? The maths doesn’t hold up as neatly.

    Adobe Express, their lighter browser-based tool aimed at social and marketing content, has improved substantially and is worth a look if you’re not doing complex work. It’s not Photoshop, but it’s not trying to be.

    Close-up of graphic design tools and tablet used with best graphic design software 2026
    Close-up of graphic design tools and tablet used with best graphic design software 2026

    Canva Pro: The Tool Professionals Love to Dismiss and Keep Using

    The design community’s complicated relationship with Canva is fascinating to watch. Every six months someone writes a serious piece about how it’s ruining the profession; every six months it gains another ten million users. Canva in 2026 is a genuinely capable tool for a specific class of work: fast-turnaround social assets, presentation decks, simple brand collateral, and anything that needs to be handed off to a non-designer without causing chaos.

    At around £13 per month for Pro, the template library, brand kit functionality, and Magic Studio AI tools are all included. It’s not built for pixel-perfect UI work or complex illustration, but for marketing and communications output it’s extremely efficient. Agencies handling content-heavy clients often maintain Canva alongside their heavier tools precisely because it removes the bottleneck of routing every quick social post through a senior designer.

    Businesses in the UK that invest in proper web design and brand software tend to see compounding returns on their marketing efficiency. Mansfield, Nottinghamshire-based digital agency dijitul — which specialises in web design, SEO, and website hosting for businesses across the East Midlands — has noted this pattern consistently across client work. The right software stack (dijitul.uk works with a range of tools depending on client need) reduces friction across the whole business efficiency chain, from brand creation through to published web pages. Their specialism in web design means software choices have a direct bearing on project delivery speed and output quality.

    The AI Challengers: Midjourney, Runway, and Adobe Firefly’s Rivals

    This is where things get genuinely interesting. The best graphic design software in 2026 no longer sits in a tidy bracket of traditional vector and raster tools. A clutch of AI-native platforms are doing real work now, not just demo-reel work.

    Midjourney v7 has reached a level of photographic fidelity and stylistic range that makes it a legitimate part of concepting and mood-boarding workflows. It’s not going to replace a skilled illustrator for anything requiring brand consistency, but for rapid ideation and client presentations where you need to communicate a visual direction quickly, it’s extraordinary. Pricing is around £8–£25 per month depending on usage tier.

    Runway Gen-3 is the motion design wildcard. If you’re doing video content or animated assets for web and social, Runway’s text-to-video and image-to-video capabilities have moved well past the uncanny valley stage for short-form content. Agencies producing branded content have started factoring it seriously into their estimates.

    Recraft is the sleeper pick few people outside the design community are talking about yet. It’s a vector-first AI image tool — proper SVG output, editable paths, brand colour locking — and it solves a genuine problem that Midjourney can’t: getting AI-generated visuals that fit inside a design system. Worth watching closely.

    Affinity Designer 2: The Serious Alternative for Price-Conscious Pros

    Serif’s Affinity suite continues to hold a very solid position as the sensible, one-time-purchase alternative to Adobe. Affinity Designer 2 handles both vector and raster work in a single environment, the performance on Apple Silicon is genuinely quick, and the £69.99 one-off licence (or £16.99/month for the whole suite) is a different conversation entirely to Adobe’s subscription. It lacks some of the ecosystem depth and third-party plugin support of the Adobe suite, but for freelancers doing brand and print work who don’t need the full CC stack, it’s a completely professional-grade option. According to BBC Technology coverage of the indie software market, tools like Affinity have genuinely disrupted the assumption that Adobe is the only credible option.

    Which Tool Actually Wins in 2026?

    There isn’t a clean answer, and anyone who gives you one is probably trying to sell you something. The best graphic design software 2026 has on offer depends almost entirely on what you’re actually building.

    UI and product design: Figma. Print and complex image editing: Adobe CC. Fast marketing content: Canva. Budget-conscious brand and print work: Affinity. AI-assisted concepting: Midjourney. Motion and video assets: Runway. Vector AI output: Recraft. These aren’t arbitrary recommendations; they reflect where each tool genuinely excels rather than where the marketing says it should.

    Agencies and freelancers making software decisions in 2026 increasingly treat their tool stack as an infrastructure choice. The shift matters because, as web design work has grown to encompass content systems, brand assets, and digital marketing material under one roof, the software used upstream affects everything downstream. Teams at digital agencies — the kind of operation handling SEO, web design, and business efficiency for multiple clients simultaneously — often run three or four tools in parallel rather than trying to force a single platform to cover every use case. That’s not inefficiency; it’s the right call given how specialised each tool has become.

    Pick the right tool for the actual job. Audit what you’re actually producing week to week. And probably stop paying for the full Adobe CC stack if you’re only ever opening Photoshop.

    Frequently Asked Questions

    What is the best graphic design software for beginners in 2026?

    Canva Pro is the most accessible starting point for beginners, with an intuitive interface and a massive template library. For those who want to progress toward professional-grade tools, Affinity Designer 2 offers a one-off purchase and a lower learning curve than Adobe Illustrator.

    Is Figma still worth using in 2026 or have competitors caught up?

    Figma remains the strongest option for collaborative UI and web design work. Its browser-based model, shared component libraries, and improved AI layout tools keep it ahead for teams working on digital products. Competitors have narrowed the gap in some areas, but nothing has overtaken it for collaborative interface design.

    How much does Adobe Creative Cloud cost in the UK in 2026?

    Adobe Creative Cloud’s all-apps plan costs approximately £60 per month for individuals in the UK. Single-app plans are cheaper, typically around £23–£28 per month. Adobe also offers discounted plans for students, teachers, and businesses on multi-seat licences.

    Are AI graphic design tools like Midjourney good enough for professional work?

    For specific tasks — mood boarding, concept art, social media visuals, and rapid ideation — AI tools like Midjourney v7 are genuinely professional-grade in 2026. However, they still require human oversight for brand consistency, accuracy, and anything needing precise editable assets. Most professionals use them alongside traditional tools rather than instead of them.

    What is the best graphic design software for freelancers on a budget?

    Affinity Designer 2 offers a one-off licence at £69.99, making it the strongest value option for freelancers who need professional vector and raster tools without a monthly subscription. Figma’s free tier also covers a lot of ground for UI-focused work, and Canva Pro at around £13 per month suits those doing primarily marketing and social content.

  • Spatial Design for UI Designers: How to Adapt Your Skills for Mixed Reality

    Spatial Design for UI Designers: How to Adapt Your Skills for Mixed Reality

    Right, so the headsets are no longer just a tech demo at trade shows. Apple’s Vision Pro has been in people’s living rooms, Meta Quest 3 is being handed out at Christmas, and developers across the UK are quietly panicking because their entire skill set is built around a flat rectangle. If you’ve spent years perfecting pixel-perfect layouts on 1440p screens, the shift to volumetric, three-dimensional interface design feels like someone changed the rules mid-game. Which, to be fair, they have.

    Spatial design for UI designers isn’t some distant futurism anymore. It’s a present-tense career skill. And the good news is that your existing knowledge doesn’t get binned. It gets extended, sometimes stretched uncomfortably, but extended nonetheless.

    Designer using a mixed reality headset to explore spatial design for UI designers in a London studio
    Designer using a mixed reality headset to explore spatial design for UI designers in a London studio

    What Spatial Design Actually Means (Not the Buzzword Version)

    Let’s be precise. Spatial design, in the context of mixed reality and extended reality (XR), refers to the practice of designing interfaces, information, and interactive elements that exist within three-dimensional space, rather than constrained to a flat screen surface. Instead of a canvas with X and Y axes, you’re working with X, Y, and Z. Depth is now a design variable.

    In a mixed reality headset like Vision Pro, a UI panel doesn’t sit inside a monitor. It floats in your kitchen. Users can walk around it, look at it from an angle, or physically reach out to interact. That changes almost everything about hierarchy, readability, affordance, and spatial audio as a design layer. The BBC’s technology coverage has tracked how these devices are moving from novelty to genuine productivity tools, which tells you the design profession needs to catch up quickly.

    The Core Principles That Actually Transfer From Screen Design

    Here’s what I’d tell any screen-based UI designer who’s feeling overwhelmed: your instincts about hierarchy, contrast, and cognitive load are still completely valid. Spatial design doesn’t throw those out. It complicates them.

    Visual hierarchy still matters enormously. In fact, it matters more, because users can now look in any direction. You can’t assume their gaze is somewhere in the centre-top third of a fixed canvas. Designing for spatial environments means thinking about where attention naturally falls in three-dimensional space, which ties directly to concepts from environmental design and wayfinding, disciplines that graphic designers have largely ignored until now.

    Typography principles carry over too, but with major caveats. Text rendering in XR headsets is improving fast, but legibility at distance and from off-angles is genuinely different from screen typography. Font weights that work at 16px on a Retina display can fall apart when a text panel is floating 1.2 metres away from a user’s face. You need to think in angular resolution, not pixels. That’s a mindset shift.

    Colour and contrast remain critical. In passthrough mixed reality, your UI layers over a real physical environment that you can’t control. That cream-coloured wall behind a floating button might destroy your contrast ratio entirely. Designing for spatial contexts requires building in far more contrast tolerance than you’d typically use on a screen.

    Floating spatial UI panels demonstrating depth and hierarchy principles in spatial design for UI designers
    Floating spatial UI panels demonstrating depth and hierarchy principles in spatial design for UI designers

    What Doesn’t Transfer and What You Need to Learn Fresh

    Scrolling is mostly dead, and that’s going to take some unlearning. The entire paradigm of infinite scroll, long-form vertical layouts, sticky navigation, all of it maps poorly to spatial interfaces. Instead, spatial design favours panels, contextual layers, and proximity-based information reveal. Content appears because you looked at something, moved towards it, or reached for it. The interaction model is fundamentally gestural and gaze-driven.

    Depth management is a new discipline you’ll need to build from scratch. Which elements sit in the foreground? Which recede? How do you communicate to a user that a control is behind them without a minimap? These problems don’t have twenty years of design pattern libraries behind them. You’re in early-explorer territory, which is either thrilling or terrifying depending on your disposition.

    Scale is genuinely strange in spatial design. Objects in XR have real-world scale. A modal dialogue that’s 600px wide on a web page becomes something you have to define in centimetres or metres in a volumetric environment. Too large and it’s overwhelming; too small and it’s fiddly. Ergonomic comfort zones, the angles and distances at which interaction feels natural, become a design constraint in the same way that viewport sizes are on the web.

    Audio as a design layer is also something screen-based designers rarely touch but spatial designers use constantly. Positional audio tells users where elements are, confirms interactions, and creates environmental feedback. If you’ve never thought about sound design, that gap needs filling.

    How to Actually Start Practising Spatial Design for UI Designers

    You don’t need to own a headset to start developing spatial intuition, though access to one obviously accelerates things. Here’s a more pragmatic path.

    Start by studying game UI design. Games have been solving volumetric interface problems for decades. Head-up displays in first-person games, diegetic interfaces that exist within the game world, contextual menus that appear near objects. Dissecting how studios like Rare or Rocksteady handle in-game UI teaches you a tremendous amount about designing for spatial contexts without writing a single line of Unity code.

    Learn the basics of Apple’s visionOS Human Interface Guidelines and Meta’s Presence Platform design principles. Both are publicly available and represent the current best thinking on spatial interface patterns. They’re genuinely well-written, even if parts of them feel like you’re reading from the future.

    Figma isn’t the right tool for spatial work, full stop. You’ll eventually need to get comfortable with either Unity, Unreal Engine, or a prototyping tool like ShapesXR or Gravity Sketch. Unity in particular has strong UK community support, with groups active in cities like London, Manchester, and Edinburgh. Getting into those communities early puts you in rooms where the practical knowledge actually lives.

    Why This Matters for Your Career Right Now

    The UK’s XR industry is not tiny. According to research from Immerse UK, the country’s immersive technology sector has been growing consistently, with significant investment going into training, healthcare, architecture, and retail applications. These sectors need designers who understand both screen conventions and spatial interaction. That intersection is currently occupied by very few people.

    Spatial design for UI designers isn’t a replacement specialism, it’s an extension. The designers who move first, who build even a basic working vocabulary in volumetric interfaces, are going to be substantially more valuable over the next five years than those who wait until the tooling is more mature. The tooling is mature enough now to learn from. It’s not mature enough yet that the patterns are locked in, which means there’s still room to help define them.

    If you’ve got strong screen design fundamentals, a willingness to unlearn a few assumptions, and even a passing interest in how spatial computing actually works, the transition is more achievable than the headset marketing makes it seem. Start small. Study the principles. Get hands-on when you can. The flat rectangle has had a good run, but design doesn’t stop at the edge of a screen.

    Frequently Asked Questions

    What is spatial design for UI designers?

    Spatial design for UI designers refers to the practice of designing interfaces and interactive elements that exist in three-dimensional space, as used in mixed reality and XR headsets, rather than on flat screens. It extends traditional screen design skills into volumetric environments where depth, scale, and physical ergonomics become core design constraints.

    Do I need a mixed reality headset to learn spatial design?

    Not initially. You can build foundational spatial design skills by studying game UI design, reading Apple’s visionOS and Meta’s Presence Platform guidelines, and learning tools like Unity or ShapesXR. That said, hands-on headset time accelerates your understanding of scale and ergonomics significantly, so getting access to a device as soon as you can is worthwhile.

    Which tools do spatial designers use instead of Figma?

    Figma is largely unsuitable for volumetric spatial design work. Common tools include Unity, Unreal Engine, ShapesXR, and Gravity Sketch. Unity is particularly well-supported in the UK, with active developer and design communities in cities like London and Manchester.

    How is spatial design different from regular UX design?

    Regular UX design operates on a fixed two-dimensional canvas with defined viewport sizes and predictable user gaze. Spatial design introduces a third axis of depth, variable real-world scale, gaze and gesture-based interaction, and the challenge of overlaying interfaces on uncontrolled physical environments. Many familiar patterns like vertical scroll and sticky navigation map poorly to spatial contexts.

    Is spatial design a good career direction for UK designers in 2026?

    Yes, and increasingly so. The UK’s immersive technology sector, tracked by organisations like Immerse UK, is growing across healthcare, retail, architecture, and training. Designers who combine strong screen-based fundamentals with spatial design knowledge are in relatively short supply, making it a genuinely valuable skill combination right now.

  • No-Code vs Low-Code vs Full Code: Choosing the Right Build Approach for Your Next Project

    No-Code vs Low-Code vs Full Code: Choosing the Right Build Approach for Your Next Project

    The question of how to actually build something has never been more loaded. In 2026, the gap between dragging a block in Webflow and writing a custom API route in Next.js is enormous, but both approaches can ship a production-ready product. Understanding the no-code vs low-code vs full code 2026 landscape properly, rather than just defaulting to what you already know, is genuinely one of the most useful decisions you can make before a single pixel gets placed or a single line gets typed.

    This isn’t about which approach is objectively best. It’s about which one fits the project sitting in front of you right now. Let’s actually break it down.

    Designer and developer comparing no-code vs low-code vs full code 2026 build approaches at studio workstations
    Designer and developer comparing no-code vs low-code vs full code 2026 build approaches at studio workstations

    What Do We Even Mean by No-Code, Low-Code, and Full Code?

    These three terms get blurred constantly, usually by marketing teams trying to make their platform sound more accessible than it is. So let’s be precise.

    No-code means building entirely through a visual interface, no programming knowledge required. Webflow is the canonical example for websites. Framer sits in an interesting middle zone (more on that shortly). The idea is that logic, layout, and interactions are all abstracted behind GUI controls.

    Low-code means a visual-first environment that still expects you to write some code when complexity demands it. Framer’s React override system is a great example. You can build 90% of a site visually, then drop into TypeScript for a custom animation or data fetch. Platforms like Bubble fall here too for web apps.

    Full code means you’re writing everything from scratch, or close to it. Next.js, Remix, SvelteKit, raw React. You control the architecture, the performance, the data layer, all of it. The ceiling is unlimited. So is the time investment.

    The Case for No-Code: Webflow and the Visual Web

    Webflow has matured considerably. Its CMS is genuinely powerful for content-heavy marketing sites, and the Interactions panel gives motion designers a level of control that would have required GSAP and a developer two years ago. For a UK agency spinning up a client brochure site, a campaign landing page, or a portfolio, Webflow is hard to argue against on speed-to-launch alone.

    The honest limitations, though, are real. Custom authentication flows, complex database relationships, dynamic user dashboards — Webflow starts to creak. You’ll find yourself reaching for Memberstack, Airtable, Zapier, and a growing stack of third-party bolt-ons that each cost money and introduce failure points. At some point, you’re maintaining a Frankenstein architecture held together by webhooks and crossed fingers.

    Best for: marketing sites, portfolios, content-driven blogs, campaign pages, client projects where the brief is well-defined and scope is unlikely to balloon.

    Developer working on low-code build tools in a comparison of no-code vs low-code vs full code 2026
    Developer working on low-code build tools in a comparison of no-code vs low-code vs full code 2026

    The Case for Low-Code: Framer’s Interesting Proposition

    Framer occupies a genuinely interesting space in the no-code vs low-code vs full code 2026 conversation. It started as a prototyping tool, pivoted aggressively to being a publishing platform, and is now used by design-led teams at some serious companies. The visual canvas is arguably better than Webflow’s for highly expressive, animation-heavy sites. The component model maps closely enough to React that moving to full code later isn’t a complete rewrite.

    Where Framer shines is for design teams who want to own the build. Designers can ship real sites without waiting for a developer, but developers can drop into code overrides when something bespoke is needed. It’s collaborative in a way that feels natural rather than forced.

    The caveats: Framer’s CMS is still less mature than Webflow’s, and for anything approaching a real web application, you’ll outgrow it quickly. It’s also worth keeping an eye on pricing, as Framer’s plans have shifted a few times and costs can accumulate for larger teams. The UK government’s guidance on open standards in technology is a useful reminder that platform lock-in is a real risk worth evaluating before committing.

    Best for: design-led teams, portfolio sites with heavy animation, marketing pages for tech companies, projects where designer autonomy is a priority.

    The Case for Full Code: Next.js and Owning Everything

    Next.js remains the dominant React framework in 2026 for good reason. Server components, edge rendering, the App Router, built-in image optimisation, and a deployment pipeline that slots directly into Vercel or a self-hosted setup. If you’re building a SaaS product, an e-commerce platform, a membership site with real logic, or anything that needs to scale with user data, full code is the only honest answer.

    The trade-off is time and expertise. A Next.js project requires architectural decisions upfront: database choice, authentication strategy, state management, API design. You’re not dragging blocks; you’re writing components, managing dependencies, handling errors, writing tests. For a small studio or solo developer, the overhead is real.

    That said, the developer experience in 2026 is genuinely good. TypeScript tooling is excellent, component libraries like shadcn/ui have removed enormous amounts of boilerplate, and deployment is faster than ever. If you have the skills or the team, full code gives you nothing you can’t build.

    Best for: SaaS products, web applications with user accounts, e-commerce with custom logic, anything requiring a real backend, projects with long-term scale requirements.

    How to Actually Choose: A Practical Framework

    Here’s the decision tree I tend to use when scoping a new project.

    Start with the question: does this project need user accounts, custom logic, or a real database relationship beyond basic CMS fields? If yes, you’re in full code territory unless you want to spend months patching low-code workarounds.

    If no, ask: does the design require significant custom animation, unusual layout patterns, or component-level interactivity? If yes, Framer’s low-code model is worth serious consideration. If the design is relatively conventional, Webflow’s no-code environment will get you to launch faster.

    Timeline and budget matter enormously. A startup with two weeks and a tight budget to validate an idea should not be commissioning a bespoke Next.js application. A growing platform with paying users and a development team should not be running on Webflow CMS bolted to four third-party services.

    The Hybrid Reality Most Projects Actually Live In

    The honest truth about the no-code vs low-code vs full code 2026 decision is that most real-world projects are hybrid. A marketing site in Webflow or Framer pulling data from a headless CMS, connected to a Next.js backend that handles authentication and payments. Or a Framer front-end with code overrides calling a lightweight API. These architectures are increasingly common, and they work well when scoped deliberately.

    The mistake is letting the approach choose itself by default. Picking Webflow because you’ve always used Webflow, or defaulting to Next.js because it feels more serious. The tool should serve the project, not the other way around. Get that decision right upfront and everything downstream is easier.

    Frequently Asked Questions

    Is Webflow good enough for a real business website in 2026?

    Absolutely, for most marketing and content-driven sites. Webflow handles CMS, SEO, hosting, and interactions well enough for the vast majority of business websites. Where it struggles is with complex user logic, real databases, and application-level features.

    Can Framer replace a developer entirely?

    For design-heavy marketing sites and portfolios, Framer can often get a designer to a shipped product without a developer. However, anything requiring custom backend logic, authentication, or complex data handling will still need developer involvement, either through Framer’s code overrides or a separate API.

    When should I use Next.js instead of a no-code platform?

    Use Next.js when your project needs user accounts, complex data relationships, a custom API, or any logic that goes beyond what a CMS can handle. It’s also the better choice when performance at scale, long-term maintainability, or bespoke functionality are priorities.

    How much does it cost to build with Webflow vs Next.js?

    Webflow’s pricing starts from around £14 per month for basic sites, scaling up to £35+ for CMS and e-commerce plans. Next.js itself is open-source and free, but you’ll factor in hosting (Vercel’s free tier is generous, paid plans start around £16 per month) plus development time, which is significantly higher than no-code.

    What is the best build approach for a SaaS startup in 2026?

    Most SaaS products genuinely need full code, specifically a framework like Next.js, because user authentication, billing, dashboards, and data logic require real engineering. You might use a no-code tool for the marketing landing page, but the actual product needs a proper codebase.

  • The Best AI Design Tools of 2026: Figma, Adobe Firefly and the New Challengers

    The Best AI Design Tools of 2026: Figma, Adobe Firefly and the New Challengers

    Right, let’s be honest: the AI design tool space has exploded so aggressively that keeping track of it feels like watching a React framework appear every six minutes. There are genuinely useful tools in the mix, some that are mostly hype dressed up in a slick landing page, and a handful of newcomers doing things that would have seemed like science fiction in 2022. This breakdown covers the best AI design tools 2026 has produced so far, what they actually do well, where they fall short, and which type of designer should be reaching for which tool.

    One thing worth flagging up front: “AI-powered” is now essentially a marketing tick box. Almost every design tool will claim it. The interesting question is whether the AI actually changes how you work, or whether it’s just a generative fill button buried three menus deep. The tools that make this list earn their place by genuinely shifting workflow — not just tacking on a chatbot.

    Designers working with the best AI design tools 2026 in a modern London studio
    Designers working with the best AI design tools 2026 in a modern London studio

    Figma AI: The One That’s Already In Your Workflow

    Figma has had a head start that most competitors are still trying to close. Its AI features, rolled out properly across 2025 and expanded further this year, sit inside the tool you’re probably already using — which is a significant advantage. The standout features right now are the auto-layout suggestions, the “Make designs” prompt-to-component pipeline, and the AI-powered rename layers function that sounds trivial until you inherit a file with 400 layers called “Rectangle 47”.

    The prompt-to-wireframe feature has got genuinely good. You can describe a SaaS dashboard, get a rough structural layout, then refine from there. It’s not replacing senior-level design thinking, but for rapid ideation or scaffolding a new project, it saves real hours. Pricing sits within Figma’s standard tiers: the Professional plan is around £12 per editor per month, with AI features accessible on Professional and above. For teams already paying for Figma, there’s no additional cost to enable the AI layer, which is a smart bundling decision.

    Best for: Product designers, UI/UX professionals, design teams already in the Figma ecosystem who want AI augmentation without switching tools.

    Adobe Firefly and the Creative Cloud AI Stack

    Adobe’s bet on Firefly has turned into something more coherent than it looked in its early, slightly chaotic release. By 2026, Firefly is properly embedded across Photoshop, Illustrator, InDesign, and Express, and the quality of its generative outputs has improved markedly. The big thing Adobe keeps hammering (and it’s a legitimate point) is commercial safety: Firefly is trained on licensed Adobe Stock content, which matters enormously for agency work where IP liability is a real concern.

    Generative Fill in Photoshop remains genuinely impressive for photo manipulation. The Vector Recolour and Generative Recolour features in Illustrator are a proper time save for brand asset production. Where Adobe still frustrates is pricing: Creative Cloud All Apps is around £60 per month for individuals, and Firefly generative credits are metered — you can burn through them faster than you’d expect on a busy project. The enterprise tiers sort this out with unlimited credits, but that’s a conversation for procurement teams with actual budgets.

    Best for: Graphic designers, brand designers, photographers, agencies needing commercially safe generative outputs, print and editorial work.

    Close-up view of a professional using best AI design tools 2026 on a design monitor
    Close-up view of a professional using best AI design tools 2026 on a design monitor

    Canva AI: The One That Surprised Everyone

    Look, some people still sniff at Canva as “not real design”. Those people should probably update their priors. Canva’s AI suite, particularly Magic Studio, has become genuinely capable. Magic Write, the text generation layer, is solid for social content and marketing copy. Magic Design generates complete template layouts from a prompt or an uploaded image. Magic Animate adds motion to static designs without touching a timeline. And Magic Eraser for background and object removal now rivals standalone tools.

    For non-designers, marketing teams, and small businesses producing high volumes of social content, Canva Pro (around £10.99 per month for individuals) is extraordinary value. The AI features are meaningfully better than they were two years ago. The ceiling is lower than Figma or Adobe for complex, precise design work — but that’s not Canva’s audience, and it’s not trying to be.

    Best for: Marketing teams, content creators, non-designers, social media managers, small businesses. Less suited to detailed product UI or complex print work.

    Khroma, Uizard and the Specialist Challengers

    Beyond the platform giants, a cluster of specialist AI tools have carved out genuinely useful niches.

    Khroma is an AI colour tool that learns your palette preferences from a training set you provide, then generates infinite colour combinations you’d actually use. It’s free, it’s focused, and it’s oddly addictive. If colour is a consistent pain point in your process, it’s worth an afternoon of your time.

    Uizard has positioned itself as the fastest route from idea to testable prototype. You can sketch on paper, photograph it, and Uizard converts it to a digital wireframe. Prompt-to-UI is also on offer. For solo founders and startup teams validating ideas quickly, it fills a real gap. Plans start at around £12 per month.

    Galileo AI remains one to watch: it generates high-fidelity UI designs from text prompts at a speed that still raises eyebrows. It’s more useful for inspiration and early concepting than final delivery, but it has accelerated the early phases of product design projects noticeably.

    The BBC Technology section has been tracking how these AI tools are reshaping creative industries broadly, and the pattern is consistent: the tools that earn real adoption are the ones that remove friction from existing workflows rather than asking designers to rebuild their entire process around a new paradigm.

    How to Actually Choose Between Them

    Here’s my rough framework for cutting through the noise on the best AI design tools 2026 has thrown at us.

    If you’re a product or UI/UX designer working in teams, you’re almost certainly staying in Figma. The AI features are good enough, the collaboration layer is unbeaten, and switching cost is enormous. If you’re doing brand, print, or photo-heavy work professionally, Adobe’s stack earns its price for the commercial licensing alone. If you’re a solo operator or a small marketing team producing content at volume, Canva Pro plus its AI suite is genuinely hard to argue against on value.

    The specialist tools, Khroma, Uizard, Galileo, are best thought of as additions to your kit rather than replacements for a primary tool. They’re excellent at specific tasks and cheap enough that running two or three alongside your main platform is entirely reasonable.

    One thing I’d push back on is the anxiety that these tools are making design skills redundant. If anything, the designers getting the most out of them are the ones with strong fundamentals: good layout sense, typographic knowledge, understanding of visual hierarchy. The AI amplifies good taste. It doesn’t manufacture it.

    A Quick Note on Pricing and UK VAT

    All the prices mentioned above are approximate and exclude VAT. If you’re buying as an individual in the UK, add 20% VAT to your calculations. If you’re operating through a limited company and VAT registered, you can reclaim it, but check your accountant on the specifics. Adobe’s enterprise pricing in particular is worth negotiating directly, especially for agencies with five or more seats.

    Frequently Asked Questions

    What is the best AI design tool for beginners in 2026?

    Canva with its Magic Studio AI suite is the most approachable option for beginners, offering prompt-to-design, background removal, and auto-animation without needing any prior design training. For beginners who want to progress toward professional UI/UX work, Figma’s AI features are worth learning from the start, as it’s the industry standard tool.

    Is Adobe Firefly worth the subscription cost in 2026?

    For professional graphic designers and agencies already using Creative Cloud, yes — Firefly’s commercial licensing safety and tight integration across Photoshop and Illustrator make it genuinely valuable. If you’re only using one or two Adobe apps and primarily need generative image features, standalone alternatives like Midjourney or Ideogram may give you more output per pound.

    Can Figma's AI features replace a designer entirely?

    No, and it’s not designed to. Figma’s AI handles scaffolding, ideation, and repetitive tasks like auto-renaming layers or suggesting layout structures, but the output still requires a designer’s judgement to refine and make production-ready. Think of it as a fast, well-organised junior that needs direction.

    Which AI design tools are best for freelance designers?

    Figma Professional (around £12 per editor per month) covers UI/UX work comprehensively. For brand and visual design, Adobe Creative Cloud’s single-app plans can reduce cost if you only need Illustrator or Photoshop. Khroma is free and excellent for colour work. Canva Pro at around £10.99 per month is worth adding for fast client-facing content production.

    Are AI-generated designs commercially safe to use for client work in the UK?

    It depends on the tool. Adobe Firefly is trained on licensed content and is specifically positioned as commercially safe. Tools trained on scraped web imagery carry more legal ambiguity, and UK intellectual property law in this area is still developing. For client deliverables, sticking to tools with clear licensing provenance like Firefly is the lower-risk approach.

  • The Ultimate Beginner’s Guide to Learning React in 2026

    The Ultimate Beginner’s Guide to Learning React in 2026

    React is still the dominant force in front-end development, and if you want to learn React in 2026, you’ve picked a genuinely good time to start. The ecosystem has matured enormously. The chaotic, “twelve different ways to do state management” energy of a few years ago has settled into something far more coherent. There are clearer paths, better tooling, and a community that has collectively agreed on quite a lot of things that used to cause endless arguments on Stack Overflow at midnight.

    That said, beginners still run into the same walls. They watch a tutorial, build a counter app, feel great, then open a real codebase and feel completely lost. This guide is about bridging that gap: what to actually learn, in what order, and why the stuff most tutorials skip is usually the stuff that matters most.

    Developer at desk coding to learn React 2026 with component tree visible on screen
    Developer at desk coding to learn React 2026 with component tree visible on screen

    The Modern React Ecosystem: What You Actually Need in 2026

    First, a quick orientation. React itself is a UI library, not a full framework. It handles the view layer. Everything else, routing, data fetching, server rendering, is handled by tools built around it. In 2026, the two ecosystems worth your attention are Next.js and Remix. If you’re aiming for a job at a UK startup or agency, Next.js is almost certainly what you’ll encounter. It’s the safe bet. Remix is brilliant and teaches you web fundamentals in a way Next.js sometimes obscures, but Next.js has the bigger job market.

    For state management, the landscape has simplified. React’s built-in hooks (useState, useReducer, useContext) handle a huge amount of what used to require Redux. When you do need something more powerful, Zustand is lightweight and sensible. TanStack Query (formerly React Query) is the go-to for server state, and honestly, once you understand the difference between server state and client state, a massive chunk of React complexity suddenly makes sense.

    Styling in 2026? Tailwind CSS has won the utility-class argument for most teams. You’ll encounter it constantly. Learn it. CSS Modules are still solid for more traditional approaches, and CSS-in-JS solutions like Emotion still exist in older codebases, but Tailwind is the pragmatic choice for anyone starting fresh.

    Where to Actually Learn React: Resources Worth Your Time

    The React documentation at react.dev is genuinely excellent now. It was rewritten a couple of years back with hooks as the default, and it includes interactive sandboxes throughout. Start there. Seriously, the official docs are not boring placeholder content; they’re a proper learning path written by people who understand how beginners think.

    Beyond the docs, a few resources stand out. Scrimba has interactive React courses that let you code directly in the browser as you watch. The Odin Project is a free, open-source curriculum with a strong UK community following, and it covers React in proper context alongside HTML, CSS, and JavaScript fundamentals. For video content, Jack Herrington on YouTube is technically rigorous without being dry. He covers advanced patterns without making you feel like you need a computer science degree to follow along.

    One thing I’d strongly recommend: do not jump into React before you are genuinely comfortable with modern JavaScript. Destructuring, spread operators, array methods like map and filter, async/await, and ES modules. React makes heavy use of all of these. If JavaScript concepts are fuzzy, React will feel like magic in the worst sense, and you’ll be copying code you don’t understand.

    Close-up of React code with TypeScript on a laptop screen while learning React 2026 concepts
    Close-up of React code with TypeScript on a laptop screen while learning React 2026 concepts

    Key Concepts Beginners Constantly Overlook

    Here’s where I see people get stuck. Not on the basics, but on the concepts that tutorials gloss over because they’re harder to demonstrate in a ten-minute YouTube video.

    The Component Mental Model

    React is built around components, and understanding what makes a good component is more art than science at first. The principle of single responsibility applies here: a component should ideally do one thing. When components become enormous with ten different concerns tangled together, they become almost impossible to maintain. Practise breaking UI into small, composable pieces from the start.

    useEffect Is Not a Lifecycle Method

    This trips up almost everyone who learned React before hooks, and it confuses beginners who read older tutorials. useEffect is for synchronising your component with an external system. It is not a direct replacement for componentDidMount. The dependency array is not optional decoration. Getting useEffect wrong is one of the most common sources of bugs in React applications, full stop.

    Understanding Re-renders

    React re-renders a component when its state or props change. Simple enough. But when you have components passing data down several levels, or when you have large lists rendering unnecessarily, performance suffers. Understanding when React re-renders, and tools like React DevTools Profiler to actually measure it, is what separates someone who can build React apps from someone who can build React apps that perform well.

    TypeScript Is Not Optional Anymore

    If you’re learning React in 2026 and you’re ignoring TypeScript, you are actively making your future self miserable. The overwhelming majority of production React codebases at UK companies use TypeScript. It adds a small amount of upfront friction and pays back tenfold in catching errors, improving editor autocomplete, and making code self-documenting. Learn it alongside React, not after.

    Project Ideas That Actually Build Real Skills

    Tutorial projects are fine for learning syntax. But you need to build things that have real complexity. Here’s a progression that works well.

    Start with a GitHub user search app using the GitHub REST API. It introduces you to data fetching, loading states, error handling, and conditional rendering. All four of those will appear in every real project you ever build. Then move to a personal finance tracker with local storage persistence. This forces you to think about state management properly and how data flows between components. Once you’re comfortable, try building a full-stack app with Next.js using a backend like Supabase or PlanetScale. At this point you’re building something genuinely close to what companies actually ship.

    The BBC’s Bitesize digital skills resources point out that building real projects is the most effective way to consolidate technical learning, and that applies directly here. Reading and watching only gets you so far. You have to break things and fix them yourself.

    The Job Market Reality for React Developers in the UK

    React skills are consistently among the most requested in UK front-end job listings. According to data from the ONS and various industry surveys, the UK tech sector added tens of thousands of software roles in 2025, and front-end and full-stack React positions form a disproportionate share of junior and mid-level vacancies. London, Manchester, Bristol, and Edinburgh all have healthy React job markets. Remote roles are abundant too, which is a significant shift from five years ago.

    Employers in 2026 are not just looking for React knowledge in isolation. They want to see TypeScript, some familiarity with testing (Jest and React Testing Library are the standard), Git fluency, and ideally some experience with a meta-framework like Next.js. If your portfolio shows you can build, deploy, and explain a reasonably complex application, you’re in a far stronger position than someone who’s completed twenty courses but hasn’t shipped anything.

    A Realistic Timeline for Learning React Properly

    People underestimate how long this takes, and that causes unnecessary discouragement. If you’re starting from a solid JavaScript base and putting in consistent effort, three to four months to build something deployable and interview-ready is a realistic target. Not three to four months of passive watching, but active building. That means writing code daily, debugging real errors, and reading documentation rather than always reaching for a tutorial.

    The React ecosystem rewards patience. There’s a lot to absorb, but the learning curve has a clear shape. Fundamentals click, then patterns click, then performance and architecture click. Give each stage the time it needs rather than rushing to the next shiny concept. The developers who learn React properly the first time rarely need to relearn it from scratch six months later. The ones who skip the foundations absolutely do.

    Frequently Asked Questions

    Do I need to know JavaScript before I learn React in 2026?

    Yes, and this is non-negotiable. You should be comfortable with modern JavaScript concepts including ES6 syntax, array methods like map and filter, destructuring, async/await, and modules before starting React. Jumping in without this foundation means you’ll be confused about what’s JavaScript and what’s React, which makes debugging almost impossible.

    Is React still worth learning in 2026, or has something replaced it?

    React is absolutely still worth learning. It remains the most widely used front-end library in UK job listings and the broader industry. Frameworks like Next.js and Remix, both built on React, have expanded its relevance into full-stack development. Alternatives like Vue and Svelte exist and are excellent, but React’s ecosystem and job market are unmatched.

    How long does it take to learn React well enough to get a job?

    For someone with solid JavaScript foundations studying consistently, three to four months of active, project-based learning is a realistic timeline to reach job-ready level. This assumes you’re building real projects, not just watching tutorials. Adding TypeScript and Next.js to your portfolio significantly improves your chances with UK employers.

    Should I learn Next.js at the same time as React?

    It’s better to spend at least a few weeks on React itself before layering in Next.js. Understanding how React works without the framework means you’ll understand what Next.js is actually doing for you, rather than treating it as a black box. Once you’re confident with components, hooks, and basic state management, transitioning to Next.js is relatively straightforward.

    What is the best free resource to learn React in 2026?

    The official React documentation at react.dev is the single best free resource, featuring interactive examples and a structured learning path built around modern hooks-based React. The Odin Project is another excellent free option that contextualises React within a broader full-stack curriculum, and it has an active UK community for support.

  • The Best No-Code and Low-Code App Builders in 2026: A Developer’s Honest Take

    The Best No-Code and Low-Code App Builders in 2026: A Developer’s Honest Take

    Right, let’s get something out of the way immediately. If you’ve spent years learning to write proper code, the phrase “no-code” probably makes you roll your eyes so hard you can see your own occipital lobe. I get it. I’ve been there. But here’s the thing: dismissing these platforms in 2026 would be roughly as sensible as dismissing spreadsheets because you already know arithmetic. The best no-code app builders in 2026 have matured into genuinely powerful tools, and understanding them is no longer optional for anyone working in digital products.

    So this is a proper, nerdy, no-nonsense look at the current landscape. What can these platforms actually build? Where do they fall apart? And should developers be worried, or should they be reaching for them like a well-worn IDE? Let’s dig in.

    Developer reviewing best no-code app builders 2026 on multiple monitors in a London co-working space
    Developer reviewing best no-code app builders 2026 on multiple monitors in a London co-working space

    What Do We Actually Mean by No-Code and Low-Code in 2026?

    The terminology gets sloppy, so let’s define it cleanly. No-code platforms let you build fully functional applications through visual interfaces, drag-and-drop logic, and pre-built components, with zero hand-written code required. Low-code platforms sit in the middle: they use visual tooling as the primary interface but expose code hooks, custom scripts, or API integrations for when you need to go off-piste. The line between them has blurred considerably, and most serious platforms now sit somewhere on a spectrum rather than firmly in one camp.

    According to research covered by BBC Technology, the global low-code/no-code market is expected to keep expanding aggressively through the late 2020s, driven by a persistent shortage of developers and an explosion of small businesses that need digital tooling fast. In the UK context, that’s particularly relevant given the ongoing skills gap in technical talent, especially outside London.

    The Platforms Worth Talking About

    Bubble

    Bubble remains the most capable pure no-code platform for web applications. Full stop. Its data model is genuinely sophisticated, its workflow logic can handle complex conditional branching, and its plugin ecosystem has expanded enormously. I’ve seen agencies in Manchester and Bristol build multi-sided marketplaces on Bubble that would have taken a small dev team months to ship from scratch. The catch? Bubble’s performance ceiling is real. Database-heavy applications with thousands of concurrent users start to creak, and the learning curve is steeper than its marketing suggests. It’s not a tool you hand to an intern on day one.

    Webflow

    Webflow occupies a specific niche beautifully: it’s the platform for developers and designers who want full control over HTML and CSS without touching a code editor, but who also want a proper CMS and some basic interactivity baked in. If your output is primarily a content-driven website or a lightweight web app, Webflow is genuinely excellent. Its Logic feature (Webflow’s automation layer) is maturing fast. Where it struggles is anything requiring complex backend logic or real-time data. It’s a front-end powerhouse with a fairly modest engine room.

    Glide

    Glide takes a different approach entirely: you connect it to a Google Sheet or Airtable database, and it generates a mobile app or web app from that data structure. For internal tools, it’s remarkably fast to prototype. A small UK logistics firm could spin up a driver-facing job management app in a day using Glide. Seriously. The constraint is obvious: if your data requirements become complex, you’re essentially fighting the underlying spreadsheet model, and that gets painful quickly.

    Retool

    Retool is the low-code platform that developers actually like, which tells you something. It’s built specifically for internal tools: dashboards, admin panels, ops workflows. You connect it directly to databases (PostgreSQL, MySQL, MongoDB), REST APIs, or GraphQL endpoints, and build interfaces around that data using pre-built components. It exposes JavaScript everywhere, so you can write custom logic inline. The result feels much closer to real development than dragging coloured boxes around. The downside is that it’s not cheap, and its pricing model has attracted some grumbling from smaller UK agencies.

    Xano

    Xano deserves a special mention because it fills a gap the others mostly ignore: scalable backend logic without code. While Bubble handles both front and back end in one (admittedly rigid) system, Xano is purely a backend builder. You define your database schema, build API endpoints visually, and handle authentication, business logic, and integrations through a flowchart-style editor. It pairs brilliantly with front-end no-code tools like WeWeb or FlutterFlow. For anyone building something that needs to scale but doesn’t want to maintain a Node.js backend, this is a seriously compelling option.

    Close-up of a low-code visual workflow interface representing best no-code app builders 2026
    Close-up of a low-code visual workflow interface representing best no-code app builders 2026

    What Can They Genuinely Build in 2026?

    More than most developers want to admit. MVPs, internal tooling, client portals, booking systems, CRM overlays, landing pages with CMS, lightweight SaaS products with subscription billing, mobile apps backed by real databases. I’ve watched UK startups raise seed rounds on products built entirely in Bubble. I’ve seen enterprise teams at recognisable British brands deploy Retool internally to replace clunky spreadsheet workflows that had been causing headaches for years.

    Where the best no-code app builders in 2026 still genuinely struggle is in areas requiring fine-grained performance optimisation, complex algorithmic logic, proprietary machine learning pipelines, deeply customised mobile experiences (particularly anything requiring tight hardware integration), and anything where you need absolute control over the technology stack for security or compliance reasons. Financial services firms regulated by the FCA, for instance, will have very specific data handling requirements that a hosted no-code platform may not satisfy out of the box.

    Should Developers Be Worried?

    Honestly? No. But they should be paying attention. The developer who treats no-code tools as a threat is misreading the situation. The smarter move is to think of them as power tools in an already full workshop. A senior developer who can spin up an internal tool in Retool in two hours, saving three days of custom build time, is more valuable than one who insists on writing everything from scratch on principle.

    What’s actually happening is a stratification of the market. Genuinely complex, high-scale, high-security software still needs engineers who can write proper code. But the vast middle layer of digital products, internal tools, and lightweight SaaS applications is increasingly being captured by no-code and low-code platforms. That’s not a threat to skilled developers; it’s a redirection of where developer effort is most needed.

    The real threat, if there is one, is to mid-level development work that was always fairly formulaic: CRUD apps, CMS implementations, basic API integrations. If that describes most of your portfolio, it’s worth genuinely rethinking your positioning.

    Choosing the Right Platform: A Quick Framework

    Rather than picking platforms arbitrarily, match the tool to the use case. Need a public-facing web app with a decent data model? Bubble. Need a beautiful content site with a CMS? Webflow. Need an internal dashboard wired to your existing database? Retool. Need a mobile app from a spreadsheet with minimal effort? Glide. Need a scalable backend without writing server code? Xano. And if you’re somewhere in between all of those, accept that you might be combining two platforms, which is increasingly common and actually works rather well.

    The best no-code app builders in 2026 are tools, not magic. They reward understanding their constraints as much as their capabilities. Approach them with the same rigorous, slightly obsessive mindset you’d bring to evaluating any framework or library, and they’ll earn their place in your toolkit. Dismiss them without investigation, and you’ll spend time hand-building things that didn’t need hand-building.

    Frequently Asked Questions

    What are the best no-code app builders in 2026 for beginners?

    Glide and Webflow are generally the most accessible starting points. Glide lets you build a basic app from a spreadsheet with minimal configuration, while Webflow has excellent documentation and a strong community for those building websites. Both have free tiers to experiment with before committing.

    Can no-code platforms build real, scalable applications?

    For many use cases, yes. Platforms like Bubble and Xano can handle genuine production workloads, including multi-sided marketplaces and SaaS products with paying subscribers. The limits appear at very high concurrent user counts or when complex algorithmic logic is required, where custom-coded solutions still win.

    How much do no-code and low-code platforms cost for UK businesses?

    Pricing varies considerably. Bubble’s paid plans start around £25-£30 per month for basic hosting, rising sharply for production-grade performance. Retool’s pricing is higher and team-based, making it more suited to businesses than solo builders. Most platforms offer free tiers for prototyping, which is worth using before committing.

    Are no-code platforms safe and compliant for UK businesses handling personal data?

    It depends on the platform and your specific compliance requirements. Most major platforms offer GDPR-compliant data processing agreements, but UK businesses subject to FCA or NHS data regulations should scrutinise where data is hosted and processed. Always check whether a platform offers UK or EU-based data residency options.

    What is the difference between no-code and low-code platforms?

    No-code platforms require zero hand-written code; everything is built through visual interfaces and pre-built logic. Low-code platforms use the same visual approach but expose code hooks, custom scripts, and API integrations for more complex requirements. In practice, many modern platforms sit on a spectrum between the two.