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
14 changes: 13 additions & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,14 @@
"dark": "/logo/dark.png"
},
"navbar": {
"links": [],
"links": [
{
"label": "Join Community",
"href": "https://discord.gg/ai16z",
"icon": "discord",
"style": "primary"
}
],
"primary": {
"type": "github",
"href": "https://github.com/elizaos/eliza"
Expand All @@ -420,6 +427,11 @@
"twitter:image": "/images/eliza-og.png"
}
},
"analytics": {
"posthog": {
"apiKey": "phc_YOUR_POSTHOG_API_KEY"
}
},
"contextual": {
"options": [
"copy",
Expand Down
11 changes: 11 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -242,4 +242,15 @@ a[href*="llms-full.txt"] svg[style*="robot.svg"] {
background-position: center;
pointer-events: none;
z-index: 0;
}

/* Navbar "Join Community" button hover - match GitHub button blue text */
a[href*="discord.gg"]:hover {
color: #0B35F1 !important;
}

/* Make Discord icon turn blue on hover (Mintlify uses mask-based icons) */
a[href*="discord.gg"]:hover * {
color: #0B35F1 !important;
background-color: currentColor !important;
}
Loading