diff --git a/src/components/Card.astro b/src/components/Card.astro new file mode 100644 index 0000000..118042e --- /dev/null +++ b/src/components/Card.astro @@ -0,0 +1,56 @@ +--- +const { + Title, + Description, + CallToAction, + CallToAction_Primary_Text, + CallToAction_Primary_Link, + CallToAction_Secondary_Text, + CallToAction_Secondary_Link +} = Astro.props +--- + +
{Description}
+ {CallToAction ? + + : + null + } +