Rule page.opengraph.title-missing
Add an og:title for shared-link previews
page.opengraph.title-missing is a check in Crawlmind's site audit that grades low-impact issues of this kind. This page explains why the rule matters and the exact fix.
Why it matters
The `og:title` is the headline that renders in a shared-link preview card. Without it, social apps and AI assistants fall back to the raw `<title>`, which is usually optimised for search (keyword-first, brand-suffixed, often truncated) rather than for a human glancing at a shared card. A dedicated og:title lets you write a cleaner, click-worthy headline.
The fix
Add to the page `<head>`:
```html
<meta property="og:title" content="A clear, human headline for this page" />
<meta property="og:description" content="One sentence that makes someone want to click." />
```
Keep og:title under ~60 characters so it does not truncate in the card. It can — and often should — differ from the SEO `<title>`.