Skip to content

Commit 0855346

Browse files
committed
mobile nav menu
1 parent 4126479 commit 0855346

File tree

2 files changed

+70
-4
lines changed

2 files changed

+70
-4
lines changed

apps/web/src/components/base-org/shared/TopNavigation/DevelopersDropdown.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ export function DevelopersDropdown() {
102102
<FooterCard
103103
label="Block Explorer"
104104
icon={blockchain as StaticImageData}
105-
href="https://status.base.org/"
105+
href="https://basescan.org/"
106106
/>
107107
<FooterCard
108-
label="Github"
108+
label="GitHub"
109109
icon={gitHubLogo as StaticImageData}
110110
href="https://github.com/base-org"
111111
/>
@@ -117,7 +117,7 @@ export function DevelopersDropdown() {
117117
<FooterCard
118118
label="Builder Stories"
119119
icon={bridging as StaticImageData}
120-
href="https://status.base.org/"
120+
href="/stories"
121121
/>
122122
</div>
123123
</div>

apps/web/src/components/base-org/shared/TopNavigation/index.tsx

Lines changed: 67 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,73 @@ const links: TopNavigationLink[] = [
4545
name: 'Developers',
4646
analyticContext: 'developers',
4747
href: '/developers',
48-
subItems: [],
48+
subItems: [
49+
{
50+
name: 'Documentation',
51+
description: '',
52+
href: 'https://docs.base.org',
53+
},
54+
{
55+
name: 'AgentKit',
56+
description: '',
57+
href: '/agentkit',
58+
},
59+
{
60+
name: 'Base Appchains',
61+
description: '',
62+
href: '/appchains',
63+
},
64+
{
65+
name: 'Smart Wallet',
66+
description: '',
67+
href: '/smartwallet',
68+
},
69+
{
70+
name: 'MiniKit',
71+
description: '',
72+
href: '/minikit',
73+
},
74+
{
75+
name: 'OnchainKit',
76+
description: '',
77+
href: '/onchainkit',
78+
},
79+
{
80+
name: 'Verifications',
81+
description: '',
82+
href: '/verify',
83+
},
84+
{
85+
name: 'Status Page',
86+
description: '',
87+
href: 'https://status.base.org',
88+
},
89+
{
90+
name: 'Bug Bounty',
91+
description: '',
92+
href: 'https://hackerone.com/base',
93+
},
94+
{
95+
name: 'Block Explorer',
96+
description: '',
97+
href: 'https://basescan.org',
98+
},
99+
{
100+
name: 'GitHub',
101+
description: '',
102+
href: 'https://github.com/base-org',
103+
},
104+
{
105+
name: 'Blog',
106+
description: '',
107+
href: 'https://blog.base.org/',
108+
},
109+
{
110+
name: 'Builder Stories',
111+
description: '',
112+
href: '/stories',
113+
},
114+
],
49115
},
50116
{
51117
name: 'Community',

0 commit comments

Comments
 (0)