Compare commits

...

1 Commits

Author SHA1 Message Date
rei
cfdecde769 under construction
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 21:01:02 +01:00

View File

@@ -5,6 +5,9 @@ export const MainLayout = ({ children }: PropsWithChildren) => {
return ( return (
<div className="w-full"> <div className="w-full">
<Navbar /> <Navbar />
<div className="mt-4 w-fit mx-auto bg-amber-800/20 text-amber-600 px-4 py-2 rounded-md font-bold">
Under construction 👷
</div>
<main className="xl:p-10 p-4 px-10 xl:mx-0">{children}</main> <main className="xl:p-10 p-4 px-10 xl:mx-0">{children}</main>
</div> </div>
); );