SEO002 · Description presence
Severity: critical
What it checks
Section titled “What it checks”Every route must include a <meta name="description"> tag (own or inherited through the layout chain). A missing or empty description meta tag is flagged.
Why it matters
Section titled “Why it matters”A meta description is the snippet search engines show under your title; without one they invent one from page text, often poorly.
How to fix
Section titled “How to fix”Add a <meta name="description"> in <svelte:head>, or set the description on your meta component:
<svelte:head> <meta name="description" content="A concise page summary." /></svelte:head>