| 1 |
import cx from 'classnames'; |
| 2 |
|
| 3 |
import styles from './Hero.module.css'; |
| 4 |
|
| 5 |
export const Hero = ({heading, description, className = null}) => ( |
| 6 |
<div className={cx(styles.hero, className)}> |
| 7 |
<h2 className={styles.title}>{heading}</h2> |
| 8 |
<p className={styles.description}>{description}</p> |
| 9 |
</div> |
| 10 |
); |
| 11 |
|