You're reading a page that has no server behind it. Every page on this site is pre-rendered to plain HTML at build time and served from a CDN edge near you. There is nothing to boot, nothing to query, and almost nothing to break.
What a static export actually is
Most websites assemble themselves on every visit: a server receives the request, queries a database, renders a template, and finally sends HTML. A static export does all of that once — at build time. The result is a folder of finished HTML, CSS, and JavaScript that any CDN can serve in milliseconds. This site is built with Next.js in static export mode: we get a modern component workflow while shipping the simplest possible artifact.
Why it's fast — and why fast matters
Speed isn't vanity. Google's Core Web Vitals are a ranking signal, and conversion research consistently shows that every extra second of load time costs measurable revenue. Static HTML from a CDN removes the two slowest links in the chain: server processing and database round-trips. Open DevTools and run Lighthouse on this page — that score is the baseline we hold client work to, not a lab-conditions trophy.
The security and cost story
No running server means no server to patch, no database to breach, and no 3 a.m. outage because a process ran out of memory. Hosting a static site costs a few dollars a month at most — often nothing. For a marketing site, that's budget better spent on the content and campaigns that actually grow the business.
When static isn't the answer
Honest scoping cuts both ways: if your product needs user accounts, live inventory, or personalized dashboards, parts of it need a server — and we build those too. The pattern we like is static-first: pre-render everything that can be pre-rendered, and reach for servers only where the product genuinely needs them. Most business sites need far less server than they're paying for.
The takeaway
If your current site takes more than two seconds to load on a phone, you're paying an invisible tax on every visitor — in rankings, in bounce rate, and in ad spend efficiency. A static rebuild is often the highest-ROI project on the menu. We're happy to show you the numbers for your own site on a free call.
Written by Robert Collins, founder of Closing Brackets. Talk to him about your project →