1
- import { CommandLineIcon , HomeIcon } from '@heroicons/react/24/outline'
2
1
import {
3
- FaNodeJs ,
4
- FaPython ,
5
- FaJava ,
6
- FaAws ,
7
- FaGithub ,
8
- FaCode ,
9
- FaToggleOn ,
10
- FaInternetExplorer ,
11
- FaBrain ,
12
- FaDatabase ,
13
- FaBullhorn ,
14
- FaFileArchive ,
15
- FaClock ,
16
- FaComments ,
17
- FaLock ,
18
- FaArchive ,
19
- FaGlobe ,
20
- } from 'react-icons/fa'
21
- import { SiDart , SiGo , SiPulumi , SiTerraform } from 'react-icons/si'
2
+ CommandLineIcon ,
3
+ ArchiveBoxIcon ,
4
+ CircleStackIcon ,
5
+ ClockIcon ,
6
+ CpuChipIcon ,
7
+ CursorArrowRippleIcon ,
8
+ GlobeAltIcon ,
9
+ MegaphoneIcon ,
10
+ LockClosedIcon ,
11
+ CodeBracketIcon ,
12
+ BeakerIcon ,
13
+ } from '@heroicons/react/24/outline'
14
+ import {
15
+ SiGooglecloud ,
16
+ SiMicrosoftazure ,
17
+ SiPulumi ,
18
+ SiTerraform ,
19
+ } from 'react-icons/si'
22
20
import { NavEntry } from './types'
23
21
import { NodeReference } from './reference/node'
24
22
import { PyReference } from './reference/python'
25
23
import { DartReference } from './reference/dart'
26
24
import { GoReference } from './reference/go'
25
+ import { FaAws } from 'react-icons/fa'
27
26
28
27
export const navigation : NavEntry [ ] = [
29
28
{
@@ -106,42 +105,42 @@ export const navigation: NavEntry[] = [
106
105
items : [
107
106
{
108
107
title : 'APIs' ,
109
- icon : FaGlobe ,
108
+ icon : GlobeAltIcon ,
110
109
href : '/apis' ,
111
110
} ,
112
111
{
113
112
title : 'Batch (AI/ML/HPC)' ,
114
- icon : FaBrain ,
113
+ icon : CpuChipIcon ,
115
114
href : '/batch' ,
116
115
} ,
117
116
{
118
117
title : 'Schedules' ,
119
- icon : FaClock ,
118
+ icon : ClockIcon ,
120
119
href : '/schedules' ,
121
120
} ,
122
121
{
123
122
title : 'Websockets' ,
124
- icon : FaComments ,
123
+ icon : CursorArrowRippleIcon ,
125
124
href : '/websockets' ,
126
125
} ,
127
126
{
128
127
title : 'Storage' ,
129
- icon : FaArchive ,
128
+ icon : ArchiveBoxIcon ,
130
129
href : '/storage' ,
131
130
} ,
132
131
{
133
132
title : 'SQL Databases' ,
134
- icon : FaDatabase ,
133
+ icon : CircleStackIcon ,
135
134
href : '/sql' ,
136
135
} ,
137
136
{
138
137
title : 'Async Messaging' ,
139
- icon : FaBullhorn ,
138
+ icon : MegaphoneIcon ,
140
139
href : '/messaging' ,
141
140
} ,
142
141
{
143
142
title : 'Secrets' ,
144
- icon : FaLock ,
143
+ icon : LockClosedIcon ,
145
144
href : '/secrets' ,
146
145
} ,
147
146
] ,
@@ -160,12 +159,12 @@ export const navigation: NavEntry[] = [
160
159
} ,
161
160
{
162
161
title : 'Google Cloud' ,
163
- icon : FaAws ,
162
+ icon : SiGooglecloud ,
164
163
href : '/providers/pulumi/gcp' ,
165
164
} ,
166
165
{
167
166
title : 'Azure' ,
168
- icon : FaAws ,
167
+ icon : SiMicrosoftazure ,
169
168
href : '/providers/pulumi/azure' ,
170
169
} ,
171
170
] ,
@@ -181,14 +180,14 @@ export const navigation: NavEntry[] = [
181
180
} ,
182
181
{
183
182
title : 'Google Cloud' ,
184
- icon : FaAws ,
183
+ icon : SiGooglecloud ,
185
184
href : '/providers/terraform/gcp' ,
186
185
} ,
187
186
] ,
188
187
} ,
189
188
{
190
189
title : 'Custom' ,
191
- icon : FaCode ,
190
+ icon : CodeBracketIcon ,
192
191
items : [
193
192
{
194
193
title : 'Overview' ,
@@ -237,7 +236,7 @@ export const navigation: NavEntry[] = [
237
236
} ,
238
237
{
239
238
title : 'Preview Features' ,
240
- icon : FaToggleOn ,
239
+ icon : BeakerIcon ,
241
240
href : '/reference/preview-features' ,
242
241
} ,
243
242
] ,
0 commit comments