added MCPs menu item (#3066)

This commit is contained in:
Angie Jones
2025-06-25 03:02:28 +03:00
committed by GitHub
parent a025161072
commit 39cf42d1bd
2 changed files with 7 additions and 2 deletions

View File

@@ -282,6 +282,11 @@ const config: Config = {
position: "left", position: "left",
label: "Tutorials", label: "Tutorials",
}, },
{
to: "/docs/category/mcp-servers",
position: "left",
label: "MCPs",
},
{ to: "/blog", label: "Blog", position: "left" }, { to: "/blog", label: "Blog", position: "left" },
{ {
type: 'dropdown', type: 'dropdown',

View File

@@ -338,7 +338,7 @@ html[data-theme="light"] .hide-in-light {
} }
/* Force hamburger menu to appear earlier to prevent navbar overlap with smooth transitions */ /* Force hamburger menu to appear earlier to prevent navbar overlap with smooth transitions */
@media (max-width: 1350px) { @media (max-width: 1450px) {
.navbar__item { .navbar__item {
opacity: 0; opacity: 0;
transform: translateX(-10px); transform: translateX(-10px);
@@ -359,7 +359,7 @@ html[data-theme="light"] .hide-in-light {
} }
/* Ensure navbar items are visible above the breakpoint */ /* Ensure navbar items are visible above the breakpoint */
@media (min-width: 1351px) { @media (min-width: 1451px) {
.navbar__item { .navbar__item {
opacity: 1; opacity: 1;
transform: translateX(0); transform: translateX(0);