import { PropsWithChildren } from "react"; import { R3Gradient } from '../components/R3Background'; import { Navbar } from "../components/Navbar"; export const MainLayout = ({ children }: PropsWithChildren) => { return (
{children}
); };