-
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
03a66ba
commit fa1ad2b
Showing
2 changed files
with
33 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,13 @@ | ||
.wrapper { | ||
padding-top: 130px; | ||
} | ||
.shop-container { | ||
display: flex; | ||
grid-template-columns: 30rem auto; | ||
width: 100%; | ||
} | ||
|
||
.sidebar { | ||
width: 100%; | ||
margin: 0; | ||
} |
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 |
---|---|---|
@@ -1,12 +1,27 @@ | ||
import React from 'react'; | ||
import Footer from '../../Components/Footer/Footer'; | ||
import NavBar from '../../Components/NavBar/NavBar'; | ||
// import NavBar from '../../Components/NavBar/NavBar'; | ||
import Products from '../../Components/Product/Products'; | ||
import Sidebar from './Header'; | ||
import './Shop.css'; | ||
|
||
const Shop = () => { | ||
return ( | ||
<div> | ||
<iframe title='hoseacodes-store' src='https://teespring.com/stores/hoseacodes-2'> | ||
</iframe> | ||
</div> | ||
<div> | ||
{/* <iframe title='hoseacodes-store' src='https://teespring.com/stores/hoseacodes-2'> | ||
</iframe> */} | ||
<NavBar/> | ||
<div className="wrapper"> | ||
{/* <NavBar/> */} | ||
<div className="shop-container"> | ||
<Sidebar className="sidebar" /> | ||
<Products/> | ||
</div> | ||
</div> | ||
<Footer/> | ||
</div> | ||
) | ||
} | ||
|
||
export default Shop; | ||
export default Shop; |