Implement web ui
This commit is contained in:
parent
4cd184779e
commit
6a4909c1a7
13 changed files with 1141 additions and 0 deletions
17
web/src/lib/components/HowItWorksStep.svelte
Normal file
17
web/src/lib/components/HowItWorksStep.svelte
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<script lang="ts">
|
||||
interface Props {
|
||||
step: number;
|
||||
title: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
let { step, title, description }: Props = $props();
|
||||
</script>
|
||||
|
||||
<div class="card h-100 text-center p-4">
|
||||
<div class="display-1 text-primary fw-bold opacity-25">{step}</div>
|
||||
<h5 class="fw-bold mt-3">{title}</h5>
|
||||
<p class="text-muted mb-0">
|
||||
{description}
|
||||
</p>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue