1- import { CommandLineIcon , HomeIcon } from '@heroicons/react/24/outline'
21import {
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'
2220import { NavEntry } from './types'
2321import { NodeReference } from './reference/node'
2422import { PyReference } from './reference/python'
2523import { DartReference } from './reference/dart'
2624import { GoReference } from './reference/go'
25+ import { FaAws } from 'react-icons/fa'
2726
2827export const navigation : NavEntry [ ] = [
2928 {
@@ -106,42 +105,42 @@ export const navigation: NavEntry[] = [
106105 items : [
107106 {
108107 title : 'APIs' ,
109- icon : FaGlobe ,
108+ icon : GlobeAltIcon ,
110109 href : '/apis' ,
111110 } ,
112111 {
113112 title : 'Batch (AI/ML/HPC)' ,
114- icon : FaBrain ,
113+ icon : CpuChipIcon ,
115114 href : '/batch' ,
116115 } ,
117116 {
118117 title : 'Schedules' ,
119- icon : FaClock ,
118+ icon : ClockIcon ,
120119 href : '/schedules' ,
121120 } ,
122121 {
123122 title : 'Websockets' ,
124- icon : FaComments ,
123+ icon : CursorArrowRippleIcon ,
125124 href : '/websockets' ,
126125 } ,
127126 {
128127 title : 'Storage' ,
129- icon : FaArchive ,
128+ icon : ArchiveBoxIcon ,
130129 href : '/storage' ,
131130 } ,
132131 {
133132 title : 'SQL Databases' ,
134- icon : FaDatabase ,
133+ icon : CircleStackIcon ,
135134 href : '/sql' ,
136135 } ,
137136 {
138137 title : 'Async Messaging' ,
139- icon : FaBullhorn ,
138+ icon : MegaphoneIcon ,
140139 href : '/messaging' ,
141140 } ,
142141 {
143142 title : 'Secrets' ,
144- icon : FaLock ,
143+ icon : LockClosedIcon ,
145144 href : '/secrets' ,
146145 } ,
147146 ] ,
@@ -160,12 +159,12 @@ export const navigation: NavEntry[] = [
160159 } ,
161160 {
162161 title : 'Google Cloud' ,
163- icon : FaAws ,
162+ icon : SiGooglecloud ,
164163 href : '/providers/pulumi/gcp' ,
165164 } ,
166165 {
167166 title : 'Azure' ,
168- icon : FaAws ,
167+ icon : SiMicrosoftazure ,
169168 href : '/providers/pulumi/azure' ,
170169 } ,
171170 ] ,
@@ -181,14 +180,14 @@ export const navigation: NavEntry[] = [
181180 } ,
182181 {
183182 title : 'Google Cloud' ,
184- icon : FaAws ,
183+ icon : SiGooglecloud ,
185184 href : '/providers/terraform/gcp' ,
186185 } ,
187186 ] ,
188187 } ,
189188 {
190189 title : 'Custom' ,
191- icon : FaCode ,
190+ icon : CodeBracketIcon ,
192191 items : [
193192 {
194193 title : 'Overview' ,
@@ -237,7 +236,7 @@ export const navigation: NavEntry[] = [
237236 } ,
238237 {
239238 title : 'Preview Features' ,
240- icon : FaToggleOn ,
239+ icon : BeakerIcon ,
241240 href : '/reference/preview-features' ,
242241 } ,
243242 ] ,
0 commit comments