Corrected Form Layout
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from 'react'
|
||||
import { HomeLayout } from '../layouts'
|
||||
|
||||
const InternetBankingPage: React.FC = () => {
|
||||
return (
|
||||
<HomeLayout>InternetBankingPage</HomeLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export default InternetBankingPage
|
||||
Reference in New Issue
Block a user