+ Contact +
+ +-
+
diff --git a/src/components/Card.astro b/src/components/Card.astro index 2abd889..18ccba7 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,12 +3,13 @@ export interface Props { title: string; href: string; target: string; + span?: boolean } -const { href, target, title} = Astro.props; +const { href, target, title, span} = Astro.props; --- -
@@ -20,6 +20,15 @@ import Card from '../components/Card.astro';