Skip to content

SEO002 · Description presence

Severity: critical

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.

A meta description is the snippet search engines show under your title; without one they invent one from page text, often poorly.

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>