diff --git a/src/components/Card.astro b/src/components/Card.astro index bd6d597..fb5d4e3 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,14 +3,16 @@ interface Props { title: string; body: string; href: string; + source: string; } -const { href, title, body } = Astro.props; +const { href, title, body, source } = Astro.props; ---