From af12409f958c11b2ecdda1c9a51e3904a768e2ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Benegas?= Date: Fri, 23 Oct 2020 22:14:46 -0300 Subject: [PATCH] fix darkmode --- components/ui/Hero/Hero.tsx | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) 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 + + +
-
- + +
) }