Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
41 lines (37 loc) · 1.58 KB

File metadata and controls

41 lines (37 loc) · 1.58 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import React from 'react'
import Image from 'next/image'
import {CgShoppingCart} from 'react-icons/cg'
import headerImg from '../src/assets/header.png'
import featured1 from '../src/assets/Featured1.png';
import featured2 from '../src/assets/Featured2.png';
import featured3 from '../src/assets/Featured3.png';
import featured4 from '../src/assets/Featured4.png';
import Link from 'next/link';
const HeroBanner = () => {
return (
<header className='header'>
<div className='header-left-side'>
<div className='header-content'>
<span>Sale 70%</span>
<h1>An Industrial Take on Streetwear</h1>
<p>Anyone can beat you but no one can beat your outfit as long as you wear Dine outfits.</p>
<Link href='/products'>
<button className='btn' type='button'><CgShoppingCart size={26} /> Start Shopping</button>
</Link>
</div>
<div className='header-featured'>
<Image src={featured1} width={100} height={35} alt='img' />
<Image src={featured2} width={100} height={35} alt='img' />
<Image src={featured3} width={100} height={35} alt='img' />
<Image src={featured4} width={100} height={35} alt='img' />
</div>
</div>
<div className='header-right-side'>
<div className='header-circle'>
<Image className='header-img' src={headerImg} width={650} height={650} alt='header image' />
</div>
</div>
</header>
)
}
export default HeroBanner
Morty Proxy This is a proxified and sanitized view of the page, visit original site.