Merge branch 'main' into office-hour

This commit is contained in:
Antoine Phan
2025-07-19 01:17:26 -04:00
3 changed files with 17 additions and 3 deletions

View File

@@ -6,6 +6,10 @@
/** loading things from the server side */
let { data } = $props();
// Temporary progress bar. Update the value below!
import { Progress } from '@skeletonlabs/skeleton-svelte';
let progress = 60;
</script>
<title> McGill ECSESS </title>
@@ -17,6 +21,14 @@
<div id="test">
<PortableText value={data.description} />
</div>
<br />
<p class="italic">
Current development progress: {progress}%
</p>
<div id="progress" class="w-[80vw] lg:w-1/2 border-2">
<Progress value={progress} max={100} meterBg="bg-ecsess-200" height="h-4"></Progress>
</div>
</div>
</Section>