()
| 9 | import Link from 'next/link'; |
| 10 | |
| 11 | const HeroBanner = () => { |
| 12 | return ( |
| 13 | <header className='header'> |
| 14 | <div className='header-left-side'> |
| 15 | <div className='header-content'> |
| 16 | <span>Sale 70%</span> |
| 17 | <h1>An Industrial Take on Streetwear</h1> |
| 18 | <p>Anyone can beat you but no one can beat your outfit as long as you wear Dine outfits.</p> |
| 19 | <Link href='/products'> |
| 20 | <button className='btn' type='button'><CgShoppingCart size={26} /> Start Shopping</button> |
| 21 | </Link> |
| 22 | </div> |
| 23 | |
| 24 | <div className='header-featured'> |
| 25 | <Image src={featured1} width={100} height={35} alt='img' /> |
| 26 | <Image src={featured2} width={100} height={35} alt='img' /> |
| 27 | <Image src={featured3} width={100} height={35} alt='img' /> |
| 28 | <Image src={featured4} width={100} height={35} alt='img' /> |
| 29 | </div> |
| 30 | </div> |
| 31 | |
| 32 | <div className='header-right-side'> |
| 33 | <div className='header-circle'> |
| 34 | <Image className='header-img' src={headerImg} width={650} height={650} alt='header image' /> |
| 35 | </div> |
| 36 | </div> |
| 37 | </header> |
| 38 | ) |
| 39 | } |
| 40 | |
| 41 | export default HeroBanner |
nothing calls this directly
no outgoing calls
no test coverage detected