Skip to content

Commit 7b27f07

Browse files
author
codefl0w
committed
Docusaurus directories
1 parent 1fa90ec commit 7b27f07

12 files changed

Lines changed: 183 additions & 29 deletions

File tree

docs/android/_category_.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"label": "Android",
3+
"position": 1,
4+
"link": {
5+
"type": "generated-index",
6+
"title": "Android Docs",
7+
"description": "Android-specific notes, references, and implementation details."
8+
}
9+
}

docs/android/overview.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Android Overview
3+
sidebar_position: 1
4+
---
5+
6+
# Android Overview
7+
8+
Use this section for Android platform notes, app architecture, reverse engineering findings, and device-specific references.

docs/intro.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,9 @@ This directory is prepared for Docusaurus-based documentation.
1010

1111
Use it for Android notes, chipset research, tooling docs, and longer-form technical writeups.
1212

13+
## Sections
14+
15+
- `Android` for platform notes, app internals, and device-specific docs
16+
- `Tools` for utilities, scripts, and usage guides
17+
- `Research` for deeper technical investigations
18+
- `Notes` for drafts and smaller writeups

docs/notes/_category_.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"label": "Notes",
3+
"position": 4,
4+
"link": {
5+
"type": "generated-index",
6+
"title": "Notes",
7+
"description": "Scratch notes, drafts, and smaller documentation entries."
8+
}
9+
}

docs/test.md renamed to docs/notes/test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
sidebar_position: 1
32
title: Test
4-
slug: /test
3+
sidebar_position: 1
4+
slug: /notes/test
55
---
66

77
# Test

docs/research/_category_.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"label": "Research",
3+
"position": 3,
4+
"link": {
5+
"type": "generated-index",
6+
"title": "Research Docs",
7+
"description": "Research notes, chipset analysis, and technical investigations."
8+
}
9+
}

docs/research/overview.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Research Overview
3+
sidebar_position: 1
4+
---
5+
6+
# Research Overview
7+
8+
Use this section for chipset research, hardware notes, experiments, and technical deep dives.

docs/tools/_category_.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"label": "Tools",
3+
"position": 2,
4+
"link": {
5+
"type": "generated-index",
6+
"title": "Tools Docs",
7+
"description": "Documentation for utilities, scripts, and web tools."
8+
}
9+
}

docs/tools/overview.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Tools Overview
3+
sidebar_position: 1
4+
---
5+
6+
# Tools Overview
7+
8+
Use this section for utility documentation, setup steps, usage examples, and maintenance notes.

docusaurus.config.js

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,12 @@ const config = {
1616
defaultLocale: "en",
1717
locales: ["en"]
1818
},
19-
presets: [
20-
[
21-
"classic",
22-
{
23-
docs: {
24-
path: "docs",
25-
routeBasePath: "/",
26-
sidebarPath: require.resolve("./sidebars.js")
27-
},
28-
blog: false,
29-
theme: {
30-
customCss: require.resolve("./src/css/custom.css")
31-
}
32-
}
33-
]
34-
],
3519
themeConfig: {
20+
colorMode: {
21+
defaultMode: "dark",
22+
disableSwitch: false,
23+
respectPrefersColorScheme: true
24+
},
3625
navbar: {
3726
title: "fl0w Docs",
3827
items: [
@@ -72,7 +61,23 @@ const config = {
7261
],
7362
copyright: `Copyright ${new Date().getFullYear()} fl0w`
7463
}
75-
}
64+
},
65+
presets: [
66+
[
67+
"classic",
68+
{
69+
docs: {
70+
path: "docs",
71+
routeBasePath: "/",
72+
sidebarPath: require.resolve("./sidebars.js")
73+
},
74+
blog: false,
75+
theme: {
76+
customCss: require.resolve("./src/css/custom.css")
77+
}
78+
}
79+
]
80+
]
7681
};
7782

7883
module.exports = config;

0 commit comments

Comments
 (0)