Skip to content

Commit

Permalink
feat: add help menu dropdown items
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCoffee committed Apr 10, 2024
1 parent 3fa8eb8 commit 59072a8
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion page/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"extra_navbar_items": {
"Docs": "https://docs.litestar.dev",
"Community": {
"Blog": {
"description": "Read the latest updates from the Litestar team",
"link": "https://blog.litestar.dev",
"icon": "blog",
},
"Contributing": {
"description": "Learn how to contribute to the Litestar project",
"link": "https://docs.litestar.dev/2/contribution-guide.html",
Expand All @@ -42,7 +47,26 @@
"icon": "releases",
},
},
"Help": "https://github.com/orgs/litestar-org/discussions",
"Help": {
{
"title": "Discord Help Forum",
"summary": "Dedicated Discord help forum",
"url": "https://discord.gg/litestar-919193495116337154",
"icon": "coc",
},
{
"title": "GitHub Discussions",
"summary": "GitHub Discussions",
"url": "https://github.com/orgs/litestar-org/discussions",
"icon": "coc",
},
{
"title": "Stack Overflow",
"summary": "We monitor the <code><b>litestar</b></code> tag on Stack Overflow",
"url": "https://stackoverflow.com/questions/tagged/litestar",
"icon": "coc",
},
},
},
}

Expand Down

0 comments on commit 59072a8

Please sign in to comment.