import React, { FC } from 'react' import { Container } from '@components/ui' import { RightArrow } from '@components/icon' interface Props { className?: string headline: string description: string } const Hero: FC = ({ headline, description }) => { return (

{headline}

{description}

Read it here
) } export default Hero