Skip to content

Commit ee52fb0

Browse files
enedclaude
andcommitted
fix: remove conflicting sidebar files and use correct docs.page format
- Remove _sidebar.md and sidebar.json that were causing conflicts - Update docs.json with proper docs.page sidebar structure using title/href - Fix mobile menu configuration for docs.page - Ensure all pages use correct frontmatter without duplicate H1 headings 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 3139e5c commit ee52fb0

File tree

3 files changed

+35
-59
lines changed

3 files changed

+35
-59
lines changed

docs.json

Lines changed: 35 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,43 @@
11
{
22
"name": "Flutter Workmanager",
33
"description": "Background task execution for Flutter apps",
4-
"navigation": [
5-
{ "text": "Home", "link": "/" },
6-
{ "text": "Get Started", "link": "/quickstart" },
4+
"sidebar": [
75
{
8-
"text": "Examples",
9-
"items": [
10-
{ "text": "Data Sync", "link": "/usecases/data-sync" },
11-
{ "text": "File Upload", "link": "/usecases/upload-files" },
12-
{ "text": "Cleanup Tasks", "link": "/usecases/periodic-cleanup" },
13-
{ "text": "Notifications", "link": "/usecases/fetch-notifications" },
14-
{ "text": "Database Tasks", "link": "/usecases/database-maintenance" }
6+
"title": "Home",
7+
"href": "/"
8+
},
9+
{
10+
"title": "Get Started",
11+
"href": "/quickstart"
12+
},
13+
{
14+
"group": "Examples",
15+
"pages": [
16+
{
17+
"title": "Data Sync",
18+
"href": "/usecases/data-sync"
19+
},
20+
{
21+
"title": "File Upload",
22+
"href": "/usecases/upload-files"
23+
},
24+
{
25+
"title": "Cleanup Tasks",
26+
"href": "/usecases/periodic-cleanup"
27+
},
28+
{
29+
"title": "Notifications",
30+
"href": "/usecases/fetch-notifications"
31+
},
32+
{
33+
"title": "Database Tasks",
34+
"href": "/usecases/database-maintenance"
35+
}
1536
]
1637
},
17-
{ "text": "Debugging", "link": "/debugging" }
38+
{
39+
"title": "Debugging",
40+
"href": "/debugging"
41+
}
1842
]
1943
}

docs/_sidebar.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/sidebar.json

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)