diff --git a/components/ui/Hero/Hero.module.css b/components/ui/Hero/Hero.module.css deleted file mode 100644 index e69de29bb..000000000 diff --git a/components/ui/Hero/Hero.tsx b/components/ui/Hero/Hero.tsx index e1e5d0c9c..ad600ec83 100644 --- a/components/ui/Hero/Hero.tsx +++ b/components/ui/Hero/Hero.tsx @@ -1,6 +1,4 @@ -import cn from 'classnames' import React, { FC } from 'react' -import s from './Hero.module.css' import { Container } from '@components/ui' import { RightArrow } from '@components/icon' interface Props { @@ -9,27 +7,22 @@ interface Props { description: string } -const Hero: FC = ({ headline, description, className }) => { - const rootClassName = cn('bg-black py-40 min-h-72', className) +const Hero: FC = ({ headline, description }) => { return ( -
- -
-

- {headline} -

-
-

- {description} -

- - Read it here - - -
+ +
+

+ {headline} +

+
+

{description}

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