mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
import Navbar from "@components/NavBar";
|
|
import Footer from "@components/Footer";
|
|
|
|
const DefaultLayout = (props: any) => {
|
|
return (
|
|
<div className="absolute min-h-[400px] h-screen w-full bg-[#00091F]">
|
|
<div>
|
|
<Navbar />
|
|
</div>
|
|
<div className="relative w-full overflow-hidden">{props.children}</div>
|
|
<div className="">
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default DefaultLayout;
|