FEAT: Started fleshing out content on the webpage

This commit is contained in:
2025-05-23 18:13:58 +01:00
parent 538d9593c2
commit c52d185f76
9 changed files with 159 additions and 130 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts">
export let value: number = 0; // 0 to 100
</script>
<div class="w-full mt-3">
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-400">{value}%</span>
</div>
<div class="w-full bg-gray-800 rounded-full h-5">
<div
class="bg-orange-400 h-5 rounded-full transition-all duration-500"
style="width: {value}%"
></div>
</div>
</div>