Added personal image to the pages
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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>
|
||||
)
|
||||
|
||||
@@ -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>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user