Added social links to env and added hero text to the pages
This commit is contained in:
@@ -5,7 +5,12 @@ import { PersonalHero } from "../components";
|
||||
const BusinessBankingPage: React.FC = () => {
|
||||
return (
|
||||
<HomeLayout>
|
||||
<PersonalHero />
|
||||
<PersonalHero
|
||||
heading="Business Account"
|
||||
body="Open a personal or business account in minutes, tailored to your unique needs."
|
||||
buttonLink="#"
|
||||
buttonText="Click here"
|
||||
/>
|
||||
Business Banking
|
||||
</HomeLayout>
|
||||
);
|
||||
|
||||
@@ -1,14 +1,19 @@
|
||||
import React from 'react'
|
||||
import { HomeLayout } from '../layouts'
|
||||
import { PersonalHero } from '../components'
|
||||
import React from "react";
|
||||
import { HomeLayout } from "../layouts";
|
||||
import { PersonalHero } from "../components";
|
||||
|
||||
const CooperateBankingPage: React.FC = () => {
|
||||
return (
|
||||
<HomeLayout>
|
||||
<PersonalHero />
|
||||
<PersonalHero
|
||||
heading="Cooperate Account"
|
||||
body="Open a personal or business account in minutes, tailored to your unique needs."
|
||||
buttonLink="#"
|
||||
buttonText="Click here"
|
||||
/>
|
||||
Cooperate Banking
|
||||
</HomeLayout>
|
||||
)
|
||||
}
|
||||
);
|
||||
};
|
||||
|
||||
export default CooperateBankingPage
|
||||
export default CooperateBankingPage;
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
import React from "react";
|
||||
import { GetStarted as Main, Header, Footer } from "../components";
|
||||
|
||||
const GetStartedPage :React.FC = () => {
|
||||
const GetStartedPage: React.FC = () => {
|
||||
return (
|
||||
<>
|
||||
<div className="relative">
|
||||
<Header hideSidebar={true} hideMenu={true} />
|
||||
<Main />
|
||||
<Footer />
|
||||
</>
|
||||
<div className="flex flex-col min-h-[85vh] justify-between">
|
||||
<Main />
|
||||
<div className="self-end w-full">
|
||||
<Footer />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
@@ -1,14 +1,19 @@
|
||||
import React from 'react'
|
||||
import { HomeLayout } from '../layouts'
|
||||
import { PersonalHero } from '../components'
|
||||
import React from "react";
|
||||
import { HomeLayout } from "../layouts";
|
||||
import { PersonalHero } from "../components";
|
||||
|
||||
const PersonalBankingPage: React.FC = () => {
|
||||
return (
|
||||
<HomeLayout>
|
||||
<PersonalHero />
|
||||
<PersonalHero
|
||||
heading="Personal Or Business Account"
|
||||
body="Open a personal or business account in minutes, tailored to your unique needs."
|
||||
buttonLink="#"
|
||||
buttonText="Click here"
|
||||
/>
|
||||
Personal Banking
|
||||
</HomeLayout>
|
||||
)
|
||||
}
|
||||
);
|
||||
};
|
||||
|
||||
export default PersonalBankingPage
|
||||
export default PersonalBankingPage;
|
||||
|
||||
Reference in New Issue
Block a user