Skip to content

Commit

Permalink
feat(shop): added shop page
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Mar 20, 2022
1 parent 03a66ba commit fa1ad2b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 5 deletions.
13 changes: 13 additions & 0 deletions src/Pages/Shop/Shop.css
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;
}
25 changes: 20 additions & 5 deletions src/Pages/Shop/Shop.jsx
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;

0 comments on commit fa1ad2b

Please sign in to comment.