Skip to content

Commit c43f60b

Browse files
committed
feat: replace sandbox links with CardGrid and ProjectCard components for better UI
1 parent 5ac4fd4 commit c43f60b

File tree

1 file changed

+32
-22
lines changed

1 file changed

+32
-22
lines changed

src/manage-data/dataProtector/getting-started.md

Lines changed: 32 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -216,26 +216,36 @@ discontinuity.
216216

217217
## Sandbox
218218

219-
### Core methods
220219

221-
<a href="https://codesandbox.io/p/github/iExecBlockchainComputing/dataprotector-sandbox/main" target="_blank" rel="noreferrer" class="link-as-block" style="margin-top: 16px">
222-
&nbsp;Code Sandbox
223-
</a>
224-
225-
Corresponding GitHub repository:
226-
227-
<a href="https://github.com/iExecBlockchainComputing/dataprotector-sandbox" target="_blank" rel="noreferrer" class="link-as-block">
228-
🔎 &nbsp;GitHub repository sandbox
229-
</a>
230-
231-
### Sharing methods
232-
233-
<a href="https://codesandbox.io/p/github/iExecBlockchainComputing/dataprotector-sharing-sandbox/main" target="_blank" rel="noreferrer" class="link-as-block" style="margin-top: 16px">
234-
&nbsp;Code Sandbox
235-
</a>
236-
237-
Corresponding GitHub repository:
238-
239-
<a href="https://github.com/iExecBlockchainComputing/dataprotector-sharing-sandbox" target="_blank" rel="noreferrer" class="link-as-block">
240-
🔎 &nbsp;GitHub repository sandbox
241-
</a>
220+
<CardGrid>
221+
<ProjectCard
222+
title="DataProtector Core"
223+
description="Essential data protection features including encryption, access control, and secure storage."
224+
icon="mdi:shield-lock"
225+
status="interactive"
226+
statusLabel="Interactive"
227+
buttonLabel="Open Sandbox"
228+
buttonIcon="mdi:code-braces"
229+
buttonHref="https://codesandbox.io/p/github/iExecBlockchainComputing/dataprotector-sandbox/main"
230+
githubUrl="https://github.com/iExecBlockchainComputing/dataprotector-sandbox"
231+
githubLabel="GitHub repository sandbox"
232+
/>
233+
234+
<ProjectCard
235+
title="DataProtector Sharing"
236+
description="Advanced data sharing capabilities with granular permissions and monetization features."
237+
icon="mdi:share-variant"
238+
status="interactive"
239+
statusLabel="Interactive"
240+
buttonLabel="Open Sandbox"
241+
buttonIcon="mdi:code-braces"
242+
buttonHref="https://codesandbox.io/p/github/iExecBlockchainComputing/dataprotector-sharing-sandbox/main"
243+
githubUrl="https://github.com/iExecBlockchainComputing/dataprotector-sharing-sandbox"
244+
githubLabel="GitHub repository sandbox"
245+
/>
246+
</CardGrid>
247+
248+
<script setup>
249+
import CardGrid from '../../components/CardGrid.vue';
250+
import ProjectCard from '../../components/ProjectCard.vue';
251+
</script>

0 commit comments

Comments
 (0)