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
+4 -9
View File
@@ -1,17 +1,12 @@
import React from "react";
import { GetStarted as Main, Header, Footer } from "../components";
import { GetStartedLayout } from "../layouts";
const GetStartedPage: React.FC = () => {
return (
<div className="relative">
<Header hideSidebar={true} hideMenu={true} />
<div className="flex flex-col min-h-[85vh] justify-between">
<Main />
<div className="self-end w-full">
<Footer />
</div>
</div>
</div>
<GetStartedLayout>
<Main />
</GetStartedLayout>
);
};
+10
View File
@@ -0,0 +1,10 @@
import React from 'react'
import { HomeLayout } from '../layouts'
const InternetBankingPage: React.FC = () => {
return (
<HomeLayout>InternetBankingPage</HomeLayout>
)
}
export default InternetBankingPage