removed header: depreciated button removal

This commit is contained in:
darkicewolf50 2024-03-20 18:31:35 -06:00
parent 4972e31ebc
commit b5cafacc0c

View File

@ -61,16 +61,15 @@ const Header = () => {
pageToGoTo={"/OurSponsors"} pageToGoTo={"/OurSponsors"}
textOnButton={"Our Sponsors"} textOnButton={"Our Sponsors"}
/> />
<OpenPageButton
pageToGoTo={"/BecomeASponsor"}
textOnButton={"Become a Sponsor"}
/>
<div <div
onMouseEnter={handleMouseEnter} onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave} onMouseLeave={handleMouseLeave}
style={{ background: "red" }}> style={{ background: "red" }}>
{/* dropdown menu is only visible when a mouse enters the area of the button below */} {/* dropdown menu is only visible when a mouse enters the area of the button below */}
<button type="button">Club Membership & Upcoming Events</button>{" "} <OpenPageButton
pageToGoTo={"/UpcomingEvents"}
textOnButton={"Club Membership & Upcoming Events"}
/>
{/*this button does nothing yet*/} {/*this button does nothing yet*/}
{isDropdownVisible && <DropdownMenu />} {isDropdownVisible && <DropdownMenu />}
</div> </div>