Skip to content

Commit cc121b2

Browse files
committed
add new apis tab to nav
1 parent 1191d5d commit cc121b2

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

apps/portal/src/app/Header.tsx

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,21 @@ export const connectLinks: Array<{
117117
},
118118
] as const;
119119

120+
const apisLinks = [
121+
{
122+
name: "Insight",
123+
href: "https://insight-api.thirdweb.com/reference",
124+
},
125+
{
126+
name: "Engine Cloud",
127+
href: "https://engine.thirdweb.com/reference#tag/write",
128+
},
129+
{
130+
name: "Universal Bridge",
131+
href: "https://bridge.thirdweb.com/reference",
132+
},
133+
];
134+
120135
const supportLinks = [
121136
{
122137
name: "Get thirdweb support",
@@ -221,7 +236,15 @@ export function Header() {
221236
<DocSearch variant="search" />
222237
</div>
223238

224-
<div className="xl:px-2">
239+
<div className="xl:px-1">
240+
<DropdownLinks
241+
links={apisLinks}
242+
onLinkClick={() => setShowBurgerMenu(false)}
243+
category="APIs"
244+
/>
245+
</div>
246+
247+
<div className="xl:px-1">
225248
<DropdownLinks
226249
links={supportLinks}
227250
onLinkClick={() => setShowBurgerMenu(false)}

0 commit comments

Comments
 (0)