Skip to content

Commit afdd427

Browse files
anandgupta42claude
andauthored
docs: move Data Engineering to top of nav, fix faint section headers (#29)
As a data engineering tool, the Data Engineering section (agent modes, tools, guides) should be the first thing users see after Getting Started — not buried below Configure. New nav order: Getting Started → Data Engineering → Usage → Configure → Develop → Reference. This matches the user journey: install, use the data tools, learn the interfaces, then customize. Also adds custom CSS to make nav section headers (DATA ENGINEERING, USAGE, CONFIGURE, etc.) bold uppercase with full contrast instead of the default faint light-gray styling from the white primary theme. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 190ab7c commit afdd427

2 files changed

Lines changed: 28 additions & 16 deletions

File tree

docs/docs/assets/css/extra.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* Make nav section headers more prominent */
2+
.md-nav--primary > .md-nav__list > .md-nav__item--section > .md-nav__link {
3+
font-weight: 700;
4+
color: var(--md-default-fg-color);
5+
text-transform: uppercase;
6+
font-size: 0.65rem;
7+
letter-spacing: 0.05em;
8+
opacity: 1;
9+
}

docs/mkdocs.yml

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ theme:
3535
- search.highlight
3636
- content.code.copy
3737

38+
extra_css:
39+
- assets/css/extra.css
40+
3841
markdown_extensions:
3942
- admonition
4043
- pymdownx.details
@@ -47,6 +50,22 @@ markdown_extensions:
4750
nav:
4851
- Home: index.md
4952
- Getting Started: getting-started.md
53+
- Data Engineering:
54+
- Agent Modes: data-engineering/agent-modes.md
55+
- Tools:
56+
- Overview: data-engineering/tools/index.md
57+
- SQL Tools: data-engineering/tools/sql-tools.md
58+
- Schema Tools: data-engineering/tools/schema-tools.md
59+
- FinOps Tools: data-engineering/tools/finops-tools.md
60+
- Lineage Tools: data-engineering/tools/lineage-tools.md
61+
- dbt Tools: data-engineering/tools/dbt-tools.md
62+
- Warehouse Tools: data-engineering/tools/warehouse-tools.md
63+
- Guides:
64+
- Overview: data-engineering/guides/index.md
65+
- Cost Optimization: data-engineering/guides/cost-optimization.md
66+
- Migration: data-engineering/guides/migration.md
67+
- Using with Claude Code: data-engineering/guides/using-with-claude-code.md
68+
- Using with Codex: data-engineering/guides/using-with-codex.md
5069
- Usage:
5170
- TUI: usage/tui.md
5271
- CLI: usage/cli.md
@@ -76,22 +95,6 @@ nav:
7695
- LSP Servers: configure/lsp.md
7796
- MCP Servers: configure/mcp-servers.md
7897
- ACP Support: configure/acp.md
79-
- Data Engineering:
80-
- Agent Modes: data-engineering/agent-modes.md
81-
- Tools:
82-
- Overview: data-engineering/tools/index.md
83-
- SQL Tools: data-engineering/tools/sql-tools.md
84-
- Schema Tools: data-engineering/tools/schema-tools.md
85-
- FinOps Tools: data-engineering/tools/finops-tools.md
86-
- Lineage Tools: data-engineering/tools/lineage-tools.md
87-
- dbt Tools: data-engineering/tools/dbt-tools.md
88-
- Warehouse Tools: data-engineering/tools/warehouse-tools.md
89-
- Guides:
90-
- Overview: data-engineering/guides/index.md
91-
- Cost Optimization: data-engineering/guides/cost-optimization.md
92-
- Migration: data-engineering/guides/migration.md
93-
- Using with Claude Code: data-engineering/guides/using-with-claude-code.md
94-
- Using with Codex: data-engineering/guides/using-with-codex.md
9598
- Develop:
9699
- SDK: develop/sdk.md
97100
- Server: develop/server.md

0 commit comments

Comments
 (0)