Grouped components into folders

This commit is contained in:
2022-10-16 16:26:24 +02:00
parent ea603804a2
commit 38f3caa524
20 changed files with 177 additions and 242 deletions

View File

@@ -0,0 +1,13 @@
import NavBar from "../nav/NavBar"
import { NextPage } from "next"
const BrowseLayout: NextPage = ({ children }) => {
return (
<div className="font-inter flex flex-col h-screen text-gray-100">
<NavBar />
<main className="flex-1 flex flex-row overflow-hidden">{children}</main>
</div>
)
}
export default BrowseLayout