Changes to the Hero Component

This commit is contained in:
Belen Curcio 2020-10-23 13:20:55 -03:00
parent cb4492e33f
commit db68e663ac

View File

@ -10,7 +10,7 @@ interface Props {
}
const Hero: FC<Props> = ({ headline, description, className }) => {
const rootClassName = cn('bg-black py-24 min-h-72', className)
const rootClassName = cn('bg-black py-40 min-h-72', className)
return (
<div className={rootClassName}>
<Container>