Skip to content

Commit ae259d7

Browse files
committed
add icons to all products
1 parent 4675606 commit ae259d7

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

website/src/HomePage.tsx

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useData } from 'nextra/hooks'
33
import type { ComponentPropsWithoutRef } from 'react'
44

55
import { 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'
77
import { NetworkIcon } from '@edgeandnode/go'
88

99
import { 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

Comments
 (0)