-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathResourceLinksGrid.astro
More file actions
26 lines (25 loc) · 971 Bytes
/
ResourceLinksGrid.astro
File metadata and controls
26 lines (25 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
import { LinkCard, CardGrid } from "@astrojs/starlight/components";
---
<CardGrid>
<LinkCard
title="Node Setup"
href="/operator/overview"
description="Learn how to setup your own Dusk node and get ready to join the network."
/>
<LinkCard
title="Digital Identity"
href="/developer/digital-identity/protocol"
description="Check out Dusk's privacy-preserving self-sovereign identity protocol."
/>
<LinkCard
title="Economic Protocol"
href="/learn/deep-dive/economic-protocol"
description="The economic protocol of Dusk encompasses the mechanisms enabling smart contract owners to create economic value through the services they offer."
/>
<LinkCard
title="Smart Contract Example"
href="/developer/smart-contracts-duskds/"
description="Start with the DuskDS smart contract quickstart (includes the my-first-contract template)."
/>
</CardGrid>