import React from "react";
import styles from "./HeaderBanner.module.css";

const HeaderBanner: React.FC = () => {
  return (
    <div className={styles.headerBanner}>
      <div>
        <h1 className={styles.headerText}>
          Explore new styles of music with Suno v5
        </h1>
      </div>
      {/* <div className="headerSubText">
        Here's a small taste (or whatever the listening equivalent is) of what's
        possible
      </div> */}
    </div>
  );
};

export default HeaderBanner;
