Metadata · Astro
Every page needs a title tag in Astro
The title is the clickable line in every search result and the label on every browser tab. Without one, search engines invent something from your page content and you have no control over the first thing anyone reads about you.
The fix for Astro
13x detects your framework from the response and hands you this version rather than the generic one — below 50% confidence it hedges and gives you the generic one instead.
Pass a title into your layout and render it in <head>:
---
// src/layouts/Base.astro
const { title } = Astro.props;
---
<head>
<title>{title} — example.com</title>
</head>On a different stack? The general version of this fix explains what 13x checks and why it matters, without assuming a framework.
Check your Astro site
113 deterministic checks against your live URL, in about 30 seconds. Framework detected from the response, so every fix comes back in the form your stack actually uses.
No signup. Results in 30 seconds.