const Title = ({ text, ...props }) => (
  <h1 className={styles.main} {...props}>{text}</h1>
);