diff --git a/src/components/Card.astro b/src/components/Card.astro index d255711..b965623 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,14 +3,15 @@ interface Props { title: string; body?: string; href: string; + rel?: string; icon?: string; } -const { href, title, body, icon } = Astro.props; +const { href, title, rel, body, icon } = Astro.props; ---