20 lines
488 B
TypeScript
20 lines
488 B
TypeScript
import React from "react";
|
|
import { HomeLayout } from "../layouts";
|
|
import { PersonalHero } from "../components";
|
|
|
|
const BusinessBankingPage: React.FC = () => {
|
|
return (
|
|
<HomeLayout>
|
|
<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>
|
|
);
|
|
};
|
|
|
|
export default BusinessBankingPage;
|