Added personal image to the pages

This commit is contained in:
Ebube
2024-03-20 01:37:31 +01:00
parent 2890677472
commit 86c0a236fe
10 changed files with 70 additions and 7 deletions
+7 -1
View File
@@ -1,8 +1,14 @@
import React from "react";
import { HomeLayout } from "../layouts";
import { PersonalHero } from "../components";
const BusinessBankingPage: React.FC = () => {
return <HomeLayout>Business Banking</HomeLayout>;
return (
<HomeLayout>
<PersonalHero />
Business Banking
</HomeLayout>
);
};
export default BusinessBankingPage;
+2
View File
@@ -1,9 +1,11 @@
import React from 'react'
import { HomeLayout } from '../layouts'
import { PersonalHero } from '../components'
const CooperateBankingPage: React.FC = () => {
return (
<HomeLayout>
<PersonalHero />
Cooperate Banking
</HomeLayout>
)
+2
View File
@@ -1,9 +1,11 @@
import React from 'react'
import { HomeLayout } from '../layouts'
import { PersonalHero } from '../components'
const PersonalBankingPage: React.FC = () => {
return (
<HomeLayout>
<PersonalHero />
Personal Banking
</HomeLayout>
)