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; } const Hero: FC = ({ headline, description }) => { return (

{headline}

{description}

Read it here
); }; export default Hero;