import { ReactNode } from "react"; import { Navbar } from "./navbar"; import { Footer } from "./footer"; type Props = { children: ReactNode }; export function MainLayout({ children }: Props) { return (
{children}
); }