Docs SEO

How docs indexing works today, and how to make /docs indexable later.

Current behavior (default)

Docs pages under /docs are not indexed by search engines.

This is controlled by the docs layout metadata in:

  • web/src/app/docs/layout.tsx

Specifically, it sets:

  • robots: { index: false, follow: false }

How to make docs public/SEO indexable

When you’re ready for docs to show up in Google:

  1. Update web/src/app/docs/layout.tsx and remove the robots noindex rule, or set:
    • robots: { index: true, follow: true }
  2. Consider adding richer metadata on each doc page:
    • canonical URLs
    • OpenGraph / Twitter cards