Checkpoint for implementing OH Schedule

This commit is contained in:
Antoine Phan
2025-07-08 17:47:54 -04:00
parent 0639f07bf7
commit 9c3e2fad64
7 changed files with 123 additions and 65 deletions

View File

@@ -2,6 +2,7 @@
import FaqAccordion from 'components/FAQAccordion.svelte';
import Section from 'components/Section.svelte';
import { PortableText } from '@portabletext/svelte';
import OhSchedule from 'components/OHSchedule.svelte';
/** loading things from the server side */
let { data } = $props();
@@ -34,6 +35,6 @@
<Section>
<div>
<h1 class="text-2xl">Office Hours</h1>
<p>Under development</p>
<OhSchedule allOhs={data.allOHs}/>
</div>
</Section>