diff --git a/src/components/sections/Hero.astro b/src/components/sections/Hero.astro new file mode 100644 index 0000000..d6f85bf --- /dev/null +++ b/src/components/sections/Hero.astro @@ -0,0 +1,69 @@ +--- +const { + Title, + Description, + CallToAction, + CallToAction_Primary_Text, + CallToAction_Primary_Link, + CallToAction_Secondary_Text, + CallToAction_Secondary_Link +} = Astro.props +--- + +
+
+

{Title}

+

{Description}

+ {CallToAction ? + + : + null + } +
+
+ + \ No newline at end of file