Shop page update

Changed Shop to socials page
This commit is contained in:
2024-02-27 15:40:48 -05:00
parent be2354b67d
commit 6b287ff39d
4 changed files with 67 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ import Navbar from "./components/Navbar";
import Footer from "./components/Footer";
import Home from "./pages/Home";
import Shop from "./pages/Shop";
import Socials from "./pages/Socials";
import About from "./pages/About";
import Contact from "./pages/Contact";
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
@@ -24,6 +25,8 @@ function App() {
<Route path="/" exact element={<Home />} />
<Route path="/shop" exact element={<Shop />} />
<Route path="/socials" exact element={<Socials />} />
<Route path="/about" exact element={<About />} />