creation of Footer component

This commit is contained in:
2025-10-24 12:27:10 +02:00
parent 55957a0ded
commit 2349a241aa
5 changed files with 62 additions and 4 deletions
+5 -1
View File
@@ -1,11 +1,15 @@
import { Outlet } from "react-router";
import Footer from "./components/Footer/Footer.jsx"
function Layout(){
return (
<div>
<Outlet />
<div className="content">
<Outlet />
<Footer />
</div>
</div>
)
}