import cn from 'classnames' import React, { FC } from 'react' import s from './Hero.module.css' import { Container } from '@components/ui' interface Props { className?: string headline: string description: string } const Hero: FC = ({ headline, description, className }) => { const rootClassName = cn(s.root, className) return (

{headline}

{description}

) } export default Hero