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('bg-black py-12 px-4 md:px-6', className) return (

{headline}

{description}

) } export default Hero