@@ -3,7 +3,7 @@ import { useData } from 'nextra/hooks'
33import type { ComponentPropsWithoutRef } from 'react'
44
55import { classNames , Link as LegacyLink , Tooltip } from '@edgeandnode/gds'
6- import { Clock , GraphExplorer , SocialYouTube , Subgraph , Substreams } from '@edgeandnode/gds/icons'
6+ import { Clock , Firehose , GraphExplorer , GraphNode , SocialYouTube , Subgraph , Substreams , SubstreamsPoweredSubgraph } from '@edgeandnode/gds/icons'
77import { NetworkIcon } from '@edgeandnode/go'
88
99import { Card , Heading , Link } from '@/components'
@@ -68,16 +68,31 @@ export default function HomePage() {
6868 title = { t ( 'index.products.sps.title' ) }
6969 description = { t ( 'index.products.sps.description' ) }
7070 cta = { < Link href = "/sps/tutorial/" > { t ( 'index.products.sps.cta' ) } </ Link > }
71+ icon = {
72+ < div className = "flex size-8 items-center justify-center rounded-4 bg-white-8 text-white" >
73+ < SubstreamsPoweredSubgraph size = { 4 } />
74+ </ div >
75+ }
7176 />
7277 < Card
7378 title = { t ( 'index.products.graphNode.title' ) }
7479 description = { t ( 'index.products.graphNode.description' ) }
7580 cta = { < Link href = "/indexing/tooling/graph-node/" > { t ( 'index.products.graphNode.cta' ) } </ Link > }
81+ icon = {
82+ < div className = "flex size-8 items-center justify-center rounded-4 bg-white-8 text-white" >
83+ < GraphNode size = { 4 } />
84+ </ div >
85+ }
7686 />
7787 < Card
7888 title = { t ( 'index.products.firehose.title' ) }
7989 description = { t ( 'index.products.firehose.description' ) }
8090 cta = { < Link href = "/indexing/tooling/firehose/" > { t ( 'index.products.firehose.cta' ) } </ Link > }
91+ icon = {
92+ < div className = "flex size-8 items-center justify-center rounded-4 bg-white-8 text-white" >
93+ < Firehose size = { 4 } />
94+ </ div >
95+ }
8196 />
8297 </ div >
8398 </ div >
0 commit comments