diff --git a/src/components/Card.astro b/src/components/Card.astro index 12a186c..3cb8f82 100755 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -4,15 +4,16 @@ interface Props { body: string; href: string; source: string; + alt: string; } -const { href, title, body, source } = Astro.props; +const { href, title, body, source, alt } = Astro.props; ---