upgrade
This commit is contained in:
13
frontend/src/layouts/HomeLayout.tsx
Normal file
13
frontend/src/layouts/HomeLayout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import Footer from "../components/Footer/footer";
|
||||
import { Outlet } from "react-router";
|
||||
import SiteNav from "../components/navbar/SiteNav";
|
||||
|
||||
export default function HomeLayout(){
|
||||
return(
|
||||
<>
|
||||
<SiteNav />
|
||||
<Outlet />
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user