better design with selfmade shader
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-02-09 21:34:25 +01:00
parent ff8536f8c6
commit 22755e66e5
18 changed files with 1855 additions and 97 deletions

View File

@@ -1,14 +1,13 @@
import { PropsWithChildren } from "react";
import { GradientBG } from '../components/GradientBG';
import { R3Gradient } from '../components/R3Background';
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>
<R3Gradient />
<main className="xl:p-5 p-4 px-5 xl:mx-0">{children}</main>
</div>
);
};