Unthought.

Campaign and landing pages

Single-purpose pages wired to measurement that reports what actually happened, not what a model inferred.

A campaign page has one job and is judged on one number, which makes it the easiest kind of page to build and the easiest kind to measure dishonestly. The engineering question is narrow: did the thing the page exists to cause actually happen, and does the number reported match it.

These pages are built as standalone routes with their own headline, their own proof, and a single action. Navigation is usually reduced or removed, because a page whose purpose is one action does not benefit from eleven ways to leave it.

Measurement is instrumented against observed events, not inferred ones. A conversion fires when the server has confirmed the submission — after a successful response, not on button click — because a click that failed validation is not a conversion and counting it produces a number that gets more wrong the worse the form performs.

Where a page supports paid traffic, conversion tracking is configured so the platform receives the same definition the business uses internally. Two systems reporting different totals for the same week is the normal state of affairs and it is worth the effort to avoid, because the reconciliation conversation costs more than the setup did.

Form behavior gets particular attention, since it is where campaign pages fail invisibly. Steps stay mounted instead of being destroyed and recreated, so a partially completed form survives navigation within it. The advance and submit controls carry distinct identities so a framework cannot reuse one node for both — a real defect, and one that caused users tapping the same position repeatedly to submit empty forms.

The submission path fails open. If the mail service is unavailable, the request still returns success and the lead is recorded, because losing a lead to an outage is worse than any other failure a campaign page can have.

Field count is treated as a cost, not an opportunity. Every additional question reduces the number of people who finish, and the fields most often added are the ones a salesperson would rather ask on the call anyway. Where a form must be long, it is broken into short steps with the least demanding questions first, so that someone who abandons has at least been identified.

The page and its measurement ship together. A campaign page delivered without working tracking is a page whose performance is a matter of opinion, and opinions about a landing page are settled by whoever is most confident instead of by what happened.

Exclusions

What this does not cover.

  • Managing the advertising campaigns themselves. The page and its measurement are built here; media buying is not sold.
  • Countdown timers, fake scarcity, and urgency devices that assert something untrue.
  • Conversion definitions that count clicks rather than confirmed outcomes.