add gradient BG
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-02-08 17:17:40 +01:00
parent 50358c43b9
commit 9a48d20a16
7 changed files with 8102 additions and 1608 deletions

View File

@@ -1,10 +1,13 @@
import { PropsWithChildren } from "react";
import { GradientBG } from '../components/GradientBG';
import { Navbar } from "../components/Navbar";
export const MainLayout = ({ children }: PropsWithChildren) => {
return (
<div className="w-full">
<Navbar />
<GradientBG />
<main className="xl:p-10 p-4 px-10 xl:mx-0">{children}</main>
</div>
);