Corrected Form Layout

This commit is contained in:
Ebube
2024-03-21 10:05:44 +01:00
parent 21b4bf5e8f
commit 266627d941
13 changed files with 474 additions and 224 deletions
+22
View File
@@ -0,0 +1,22 @@
import React from "react";
import { Footer, Header } from "../components";
interface GetStartedLayoutProps {
children: ReactNode;
}
const GetStartedLayout: React.FC<GetStartedLayoutProps> = ({ children }) => {
return (
<div className="relative">
<Header hideSidebar={true} hideMenu={true} />
<div className="flex flex-col min-h-[85vh] justify-between">
{children}
<div className="self-end w-full">
<Footer />
</div>
</div>
</div>
);
};
export default GetStartedLayout;