Added social links to env and added hero text to the pages

This commit is contained in:
Ebube
2024-03-20 13:12:08 +01:00
parent ee94a59f75
commit 32f2a358b2
14 changed files with 230 additions and 92 deletions
+6 -1
View File
@@ -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>
);
+12 -7
View File
@@ -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;
+9 -5
View File
@@ -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>
);
};
+12 -7
View File
@@ -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;