import React, { FC } from 'react' import { Container } from '@components/ui' import { ArrowRight } from '@components/icons' import s from './Hero.module.css' import Link from 'next/link' interface HeroProps { className?: string headline: string description: string, ctaUrl:string, ctaText: string } const Hero: FC = ({ headline, description, ctaUrl, ctaText }) => { return (

{headline}

{description}

{ctaText}
) } export default Hero