Third Commit

This commit is contained in:
2023-05-01 08:38:20 -04:00
parent 72357932a2
commit ebc3d6baa9
10 changed files with 14 additions and 14 deletions

View File

@@ -22,6 +22,6 @@ function App() {
</Router>
</div>
);
};
}
export default App;

View File

@@ -17,14 +17,14 @@ function Navbar() {
<img src={Logo} />
<div className='hiddenLinks'>
<Link to="/"> Home </Link>
<Link to="/shop"> Store </Link>
<Link to="/shop"> Shop </Link>
<Link to="/about"> About </Link>
<Link to="/contact"> Contact </Link>
</div>
</div>
<div className='rightSide'>
<Link to="/"> Home </Link>
<Link to="/shop"> Store </Link>
<Link to="/shop"> Shop </Link>
<Link to="/about"> About </Link>
<Link to="/contact"> Contact </Link>
<button onClick={toggleNavbar}>

View File

@@ -20,8 +20,8 @@ export const ShopList = [
},
{
name: "Image 3",
image: Image3,
name: "Tokyo Ghoul2",
image: ToykoGhoul,
price: 1,
}
];

View File

@@ -6,7 +6,7 @@ import "../styles/Shop.css";
function Shop() {
return (
<div className="shop">
<h1 className="shopTitle">Yo Buy My Shit</h1>
<h1 className="shopTitle">Test Shop</h1>
<div className="shopList">
{ShopList.map((shopItem, key) => {
return (