Files
peroxy_site/layouts/MainLayout.tsx
2022-12-29 01:08:46 +01:00

12 lines
330 B
TypeScript

import { PropsWithChildren } from "react";
import { Navbar } from "../components/Navbar";
export const MainLayout = ({ children }: PropsWithChildren) => {
return (
<div className="w-11/12 lg:w-2/3 m-auto overflow-x-hidden">
<Navbar />
<main className="xl:p-10 p-6 xl:mt-10">{children}</main>
</div>
);
};