Skip to content

Commit 1a8b277

Browse files
committed
Add Horizon icon to nav
1 parent 9f65950 commit 1a8b277

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

website/src/layout/Layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import {
3535
APIToken,
3636
BookOpenText,
3737
Files,
38+
Horizon,
3839
House,
3940
Hypergraph,
4041
MagnifyingGlass,
@@ -48,7 +49,6 @@ import {
4849
Stack,
4950
Subgraph,
5051
Substreams,
51-
SubstreamsPoweredSubgraph,
5252
TheGraph,
5353
Translate,
5454
} from '@edgeandnode/gds/icons'
@@ -194,9 +194,6 @@ export default function Layout({ pageOpts, children }: NextraThemeLayoutProps<Fr
194194
if (routeWithoutLocale === '/substreams' || routeWithoutLocale.startsWith('/substreams/')) {
195195
return <Substreams alt="" />
196196
}
197-
if (routeWithoutLocale === '/sps' || routeWithoutLocale.startsWith('/sps/')) {
198-
return <SubstreamsPoweredSubgraph alt="" />
199-
}
200197
if (routeWithoutLocale === '/token-api' || routeWithoutLocale.startsWith('/token-api/')) {
201198
return <APIToken alt="" />
202199
}
@@ -209,6 +206,9 @@ export default function Layout({ pageOpts, children }: NextraThemeLayoutProps<Fr
209206
if (routeWithoutLocale === '/indexing' || routeWithoutLocale.startsWith('/indexing/')) {
210207
return <RoleIndexer alt="" />
211208
}
209+
if (routeWithoutLocale === '/graph-horizon' || routeWithoutLocale.startsWith('/graph-horizon/')) {
210+
return <Horizon alt="" />
211+
}
212212
if (
213213
routeWithoutLocale === '/resources' ||
214214
routeWithoutLocale.startsWith('/resources/') ||

0 commit comments

Comments
 (0)