-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e00311c
commit 31afe4e
Showing
9 changed files
with
93 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
const Cart = () => { | ||
return ( | ||
<div> Cart</div> | ||
) | ||
} | ||
|
||
export default Cart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
const Footer = () => { | ||
return ( | ||
<div> Footer</div> | ||
) | ||
} | ||
|
||
export default Footer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
const FooterBanner = () => { | ||
return ( | ||
<div> FooterBanner</div> | ||
) | ||
} | ||
|
||
export default FooterBanner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react' | ||
import Link from 'next/link' | ||
|
||
const HeroBanner = () => { | ||
return ( | ||
<div className='hero-banner-container'> | ||
<div> | ||
<p className="beats-solo"> SMALL TEXT</p> | ||
<h3> MID TEXT</h3> | ||
<img src="" alt ="blouse" className="hero-banner-image"></img> | ||
|
||
<div> | ||
<Link href="/product/ID"> | ||
<button type="button">BUTTON TEXT</button> | ||
</Link> | ||
</div> | ||
|
||
<div className='desc'> | ||
<h5> Description</h5> | ||
<p>DESCRIPTION</p> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default HeroBanner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
const Layout = () => { | ||
return ( | ||
<div> Layout</div> | ||
) | ||
} | ||
|
||
export default Layout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
const Navbar = () => { | ||
return ( | ||
<div> Navbar</div> | ||
) | ||
} | ||
|
||
export default Navbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
const Product = () => { | ||
return ( | ||
<div> Product</div> | ||
) | ||
} | ||
|
||
export default Product |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export {default as Footer} from './Footer' | ||
export {default as Cart} from './Cart' | ||
export {default as FooterBanner} from './FooterBanner' | ||
export {default as Layout} from './Layout' | ||
export {default as Navbar} from './Navbar' | ||
export {default as Product} from './Product' | ||
export {default as HeroBanner} from './HeroBanner' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters