diff --git a/src/components/Card.astro b/src/components/Card.astro index 0453b66..82fe815 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -4,13 +4,14 @@ export interface Props { body: string; href: string; newTab?: boolean; + rel?: string; } -const { href, title, body, newTab = false } = Astro.props; +const { href, title, rel, body, newTab = false } = Astro.props; ---