diff --git a/src/lib/components/SpaceCard.svelte b/src/lib/components/SpaceCard.svelte
index ac4b5f5..f6d7e9b 100644
--- a/src/lib/components/SpaceCard.svelte
+++ b/src/lib/components/SpaceCard.svelte
@@ -4,16 +4,18 @@
interface Props {
alt: string;
imgSrc: string;
+ title?: Snippet;
description?: Snippet;
href?: string;
}
- const { alt, imgSrc, description, href }: Props = $props();
+ const { alt, imgSrc, title, description, href }: Props = $props();
{studySpace.description}
{/snippet}