organized asf

This commit is contained in:
Rei
2022-12-26 14:24:16 +01:00
parent 93dc624378
commit 1a29c39741
10 changed files with 113 additions and 2251 deletions

11
layouts/MainLayout.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { PropsWithChildren } from "react";
import { Navbar } from "../components/Navbar";
export const MainLayout = ({ children }: PropsWithChildren) => {
return (
<div className="h-screen w-11/12 xl:w-2/3 mx-auto overflow-x-hidden">
<Navbar />
<main className="mx-10">{children}</main>
</div>
);
};