The launch-readiness audit
Page title & meta description: your search result, in your words
A missing <title> or meta description means Google writes your search result for you — badly. Learn what Actuant checks, how long each should be, and how to set them in any builder.
Last updated 2026-07-19
Your title tag and meta description are literally your search result. This check is weight 8 — one of the two heaviest in the search category — because getting it wrong makes every other SEO effort invisible.
What Actuant checks
- A non-empty
<title>element — required for a partial or pass. - A
<meta name="description">with content — needed for a full pass. - Title present but no description → partial. Neither → fail ("invisible in search results").
Length is scored separately, so you can fail one without failing the other: Title length (weight 3) and Description length (weight 3) check that each one is long enough to be useful and short enough not to be truncated.
Why it matters
If you don't write the title and description, Google guesses — pulling a random sentence from your page or the raw URL. That's your one line of pitch in the search results, wasted. AI answer engines lean on the same tags to describe you.
How to fix it
- 1
Write a title under 60 characters
Say what the product does, not just its name. "Weekly meal plans from your pantry" beats "MealApp".
- 2
Write a description under 155 characters
Say who it's for and the payoff. This is ad copy, not a summary.
- 3
Set them in your builder
Every builder exposes these in page/head settings. In Next.js 16, export a
metadataobject withtitleanddescriptionfrom the page or layout.
export const metadata = {
title: "Weekly meal plans from your pantry",
description: "Tell it what's in your fridge; get a 7-day plan and a grocery list. Built for people who hate meal-planning.",
};SPA builders often inject the title at runtime. Actuant renders your app before checking, so a client-set title still passes — but crawlers that don't run JavaScript won't see it. A server-rendered title is safest.
Keep reading
Social preview
When someone shares your link, the Open Graph card is the first impression. A bare URL gets scrolled past. Learn which og: tags Actuant checks and how to add a share card.
Search indexing
No robots.txt or sitemap means crawlers guess at your site and pages get missed. Learn what Actuant checks, the one line that accidentally blocks all crawlers, and how to fix indexing.
AI-search visibility
AI answers from ChatGPT, Claude, and Perplexity are where discovery is moving. An llms.txt file is how they read your site accurately. Learn what Actuant checks and how to write one.