All checks were successful
continuous-integration/drone/push Build is passing
14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
import { PropsWithChildren } from "react";
|
|
import { R3Gradient } from '../components/R3Background';
|
|
import { Navbar } from "../components/Navbar";
|
|
|
|
export const MainLayout = ({ children }: PropsWithChildren) => {
|
|
return (
|
|
<div className="w-full">
|
|
<Navbar />
|
|
<R3Gradient />
|
|
<main className="xl:p-5 p-4 px-5 xl:mx-0">{children}</main>
|
|
</div>
|
|
);
|
|
};
|