diff --git a/components/ui/Hero/Hero.tsx b/components/ui/Hero/Hero.tsx index ad600ec83..aeb301e9a 100644 --- a/components/ui/Hero/Hero.tsx +++ b/components/ui/Hero/Hero.tsx @@ -9,20 +9,24 @@ interface Props { const Hero: FC = ({ headline, description }) => { return ( - -
-

- {headline} -

-
-

{description}

- - Read it here - - +
+ +
+

+ {headline} +

+
+

+ {description} +

+ + Read it here + + +
-
- + +
) }