25 lines
646 B
TypeScript
25 lines
646 B
TypeScript
import React from "react";
|
|
import { Footer, Header } from "../components";
|
|
|
|
interface GetStartedLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const GetStartedLayout: React.FC<GetStartedLayoutProps> = ({ children }) => {
|
|
return (
|
|
<div className="containerMode mb-[5.4375rem]">
|
|
<div className='sticky z-50 top-0 bg-white'>
|
|
<Header hideSidebar={true} hideMenu={true} />
|
|
</div>
|
|
<div className="flex flex-col min-h-[70vh] justify-between">
|
|
{children}
|
|
</div>
|
|
<div className="fixed bottom-0 left-0 bg-white w-full">
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default GetStartedLayout;
|