On-Page

Meta Description

A meta description is an HTML meta tag that provides a brief summary of a web page's content. Search engines often display it as the snippet below the title in search results.

The meta description lives in your page's `<head>` as `<meta name="description" content="...">`. While Google does not use it as a direct ranking factor, it heavily influences click-through rate (CTR) because it is the text users read before deciding to click your link.

Keep it under 160 characters to avoid truncation. Every page should have a unique meta description that accurately reflects the content. Duplicate or missing descriptions force Google to auto-generate snippets, which are often suboptimal.

In Next.js App Router, you set it via the `metadata` export or `generateMetadata()`. Indxel validates that every page has a description between 50 and 160 characters and flags duplicates across your site.

Example

// Next.js App Router
export const metadata = {
  description: "Validate, guard, and monitor your SEO from the terminal. npm package, CLI, and CI/CD guard.",
};

// HTML equivalent
// <meta name="description" content="Validate, guard, and monitor your SEO..." />

Stop shipping broken SEO

Indxel validates your metadata, guards your CI/CD pipeline, and monitors indexation — so you never miss an SEO issue again.