File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const footerGroups = (links: Links) => ({
28
28
{ label : 'Status' , link : links . status } ,
29
29
] ,
30
30
community : [
31
- { label : 'Integrations ' , link : links . integrations } ,
31
+ { label : 'Addons ' , link : links . integrations } ,
32
32
{ label : 'Get involved' , link : links . getInvolved } ,
33
33
{ label : 'Blog' , link : links . blog } ,
34
34
] ,
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ interface NavProps {
115
115
monochrome ?: boolean ;
116
116
version : string ;
117
117
apiKey : string ;
118
- activeSection ?: 'home' | 'docs' | 'showcase' | 'blog' ;
118
+ activeSection ?: 'home' | 'docs' | 'integrations' | ' showcase' | 'blog' ;
119
119
githubStarCount : number ;
120
120
}
121
121
@@ -151,7 +151,7 @@ const GithubButtonWrapper = styled.div`
151
151
152
152
display: none;
153
153
154
- @media (min-width: 1024px ) {
154
+ @media (min-width: 1224px ) {
155
155
display: block;
156
156
}
157
157
` ;
@@ -191,6 +191,15 @@ export const Nav: FunctionComponent<NavProps> = ({
191
191
>
192
192
Docs
193
193
</ NavItem >
194
+ < NavItem
195
+ active = { activeSection === 'integrations' }
196
+ monochrome = { monochrome }
197
+ variant = { inverse ? 'inverse' : 'default' }
198
+ href = { navLinks . integrations . url }
199
+ LinkWrapper = { navLinks . integrations . linkWrapper }
200
+ >
201
+ Addons
202
+ </ NavItem >
194
203
< NavItem
195
204
active = { activeSection === 'showcase' }
196
205
monochrome = { monochrome }
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ export const mobileGroups = (links: Links) => [
117
117
label : 'Community' ,
118
118
items : [
119
119
{
120
- label : 'Integrations ' ,
120
+ label : 'Addons ' ,
121
121
link : links . integrations ,
122
122
icon : < ColoredIcon icon = "grid" color = "seafoam" /> ,
123
123
} ,
You can’t perform that action at this time.
0 commit comments