import React from "react"; import { Outlet, useLocation } from "react-router-dom"; import Navbar from "./Navbar"; import Footer from "./Footer"; const Layout = () => { const location = useLocation(); // Hide footer on specific pages const hideFooterPages = ["/", "/ForgetPw", "/ResetPw"]; const shouldHideFooter = hideFooterPages.includes(location.pathname); return (
{/* Current page renders here */}
{!shouldHideFooter &&
); }; export default Layout;