Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ This is **not a managed monorepo** (no Lerna, pnpm workspaces, etc.). Each folde

**Content Structure:**
- `.mdx` and `.md` files for documentation pages
- YAML frontmatter for metadata (title, description, og/twitter tags)
- YAML frontmatter for metadata (title, description)
- `docs.json` defines navigation structure and Mintlify configuration

**Reusable Components:**
Expand Down
8 changes: 1 addition & 7 deletions main/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,7 @@ All documentation files follow this structure:
---
title: "Page Title"
description: "SEO description for search engines"
'og:image': https://cdn2.auth0.com/docs/...
'og:title': "Social media title"
'og:url': https://auth0.com/docs/path
permalink: unique-path-slug
sidebarTitle: "Optional sidebar label"
'twitter:description': "Twitter card description"
'twitter:title': "Twitter card title"
---

import { Component } from '/snippets/component.jsx';
Expand All @@ -77,7 +71,7 @@ export const codeExample2 = `more code here`;

### Key Conventions

1. **Frontmatter**: All MDX files require complete YAML frontmatter with SEO metadata
1. **Frontmatter**: All MDX files require complete YAML frontmatter
2. **Code Examples**: Export code as constants at the top of the file (after imports, before content)
3. **Imports**: Custom components imported from `/snippets/` directory
4. **Permalinks**: Used for stable URLs and redirects
Expand Down
Loading