Skip to content

Commit 3694ec3

Browse files
committed
Fix nav, add light/dark theme toggle and site links
1 parent 19f4231 commit 3694ec3

1 file changed

Lines changed: 36 additions & 12 deletions

File tree

zensical.toml

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,43 @@
22
site_name = "AgentPin Documentation"
33
site_url = "https://docs.agentpin.org/"
44
site_description = "Domain-anchored cryptographic identity protocol for AI agents"
5+
nav = [
6+
{"Home" = "index.md"},
7+
{"Getting Started" = "getting-started.md"},
8+
{"Verification Flow" = "verification-flow.md"},
9+
{"CLI Guide" = "cli-guide.md"},
10+
{"Trust Bundles" = "trust-bundles.md"},
11+
{"Delegation Chains" = "delegation-chains.md"},
12+
{"Deployment" = "deployment.md"},
13+
{"Security" = "security.md"},
14+
{"Troubleshooting" = "troubleshooting.md"},
15+
{"agentpin.org" = "https://agentpin.org"},
16+
]
517

618
[project.repository]
719
url = "https://github.com/ThirdKeyAI/agentpin"
820

9-
[project.nav]
10-
items = [
11-
{ title = "Home", path = "index.md" },
12-
{ title = "Getting Started", path = "getting-started.md" },
13-
{ title = "Verification Flow", path = "verification-flow.md" },
14-
{ title = "CLI Guide", path = "cli-guide.md" },
15-
{ title = "Trust Bundles", path = "trust-bundles.md" },
16-
{ title = "Delegation Chains", path = "delegation-chains.md" },
17-
{ title = "Deployment", path = "deployment.md" },
18-
{ title = "Security", path = "security.md" },
19-
{ title = "Troubleshooting", path = "troubleshooting.md" },
20-
]
21+
[[project.theme.palette]]
22+
scheme = "default"
23+
toggle.icon = "lucide/sun"
24+
toggle.name = "Switch to dark mode"
25+
26+
[[project.theme.palette]]
27+
scheme = "slate"
28+
toggle.icon = "lucide/moon"
29+
toggle.name = "Switch to light mode"
30+
31+
[[project.extra.social]]
32+
icon = "fontawesome/brands/github"
33+
link = "https://github.com/ThirdKeyAI/agentpin"
34+
name = "AgentPin on GitHub"
35+
36+
[[project.extra.social]]
37+
icon = "fontawesome/solid/globe"
38+
link = "https://agentpin.org"
39+
name = "agentpin.org"
40+
41+
[[project.extra.social]]
42+
icon = "fontawesome/solid/shield-halved"
43+
link = "https://thirdkey.ai"
44+
name = "ThirdKey"

0 commit comments

Comments
 (0)