diff --git a/components/icon/DoubleChevron.tsx b/components/icon/DoubleChevron.tsx index 00ed94a60..cd96a6fa5 100644 --- a/components/icon/DoubleChevron.tsx +++ b/components/icon/DoubleChevron.tsx @@ -10,7 +10,7 @@ const DoubleChevron = ({ ...props }) => { > { + return ( + + + + + ) +} + +export default RightArrow diff --git a/components/icon/index.ts b/components/icon/index.ts index e76cfa493..0a8a191c3 100644 --- a/components/icon/index.ts +++ b/components/icon/index.ts @@ -10,3 +10,4 @@ export { default as Sun } from './Sun' export { default as Moon } from './Moon' export { default as Github } from './Github' export { default as DoubleChevron } from './DoubleChevron' +export { default as RightArrow } from './RightArrow' diff --git a/components/ui/Hero/Hero.tsx b/components/ui/Hero/Hero.tsx index 5d75cee84..22bef0594 100644 --- a/components/ui/Hero/Hero.tsx +++ b/components/ui/Hero/Hero.tsx @@ -2,6 +2,7 @@ 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 { className?: string headline: string @@ -9,15 +10,23 @@ interface Props { } const Hero: FC = ({ headline, description, className }) => { - const rootClassName = cn('bg-black py-12', className) + const rootClassName = cn('bg-black py-24', className) return (
-
+

{headline}

-

{description}

+
+

+ {description} +

+ + Read it here + + +