Guides
SEO Optimization Guide

SEO Optimization Guide

Metadata Configuration

// app/layout.js
export const metadata = {
  title: {
    template: '%s - Your Site'
  },
  description: 'Site description'
}

MDX Frontmatter

---
title: Page Title
description: Page description
keywords: [key1, key2]
---

Best Practices

  1. Use semantic HTML
  2. Optimize images
  3. Create a sitemap
  4. Configure robots.txt
  5. Use canonical URLs

See Next.js Integration for implementation details.