contiune text editing

This commit is contained in:
Artur AGH
2023-10-20 18:43:45 +02:00
parent 13e4e0a1a7
commit 2abea89a2e
25 changed files with 41560 additions and 499 deletions

View File

@@ -1,4 +1,4 @@
import { ReactNode } from "react";
import type { ReactNode } from "react";
import { Sidebar } from "./sidebar";
import { Navbar } from "./navbar";
@@ -8,12 +8,12 @@ type Props = {
export const Layout = ({ children }: Props) => {
return (
<>
<div className="overflow-hidden rounded-[0.5rem] border bg-background shadow">
<Navbar />
<div className="flex h-full ">
<Sidebar />
<main className="h-full w-full bg-slate-300">{children}</main>
</div>
</>
</div>
);
};