Carousselle des produits vedettes et search bar reconstitué

This commit is contained in:
Medenos
2022-09-27 21:41:39 -04:00
parent e21d9a90ca
commit 17314f1b74
22 changed files with 550 additions and 139 deletions

View File

@@ -1,5 +1,5 @@
import React from "react";
import {Outlet} from "react-router-dom";
import { Outlet } from "react-router-dom";
import Navbar from "../components/Navbar";
import Footer from "../components/Footer";
@@ -8,7 +8,7 @@ const Layout = () => {
<>
<Navbar />
<Outlet />
<Footer/>
<Footer />
</>
);
};