2026-05-10 21:33:43 +06:00
|
|
|
import { Outlet } from "react-router-dom";
|
2026-05-14 20:21:03 +06:00
|
|
|
import Navbar from "@/components/home/Navbar";
|
|
|
|
|
import Footer from "@/components/home/Footer";
|
2026-05-10 21:33:43 +06:00
|
|
|
|
|
|
|
|
const MainLayout = () => {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Navbar />
|
|
|
|
|
<Outlet />
|
|
|
|
|
<Footer />
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default MainLayout;
|