27 lines
866 B
JavaScript
27 lines
866 B
JavaScript
// import React from "react";
|
|
// import styles from "./styles";
|
|
|
|
import {Navbar, Billing, CardDeal, Business, Clients, CTA, Stats,
|
|
Footer, Testimonials, Hero,} from "../../BankModern/src/components/Index";
|
|
|
|
const App = () => {
|
|
return (
|
|
<div className="bg-primary w-full overflow-hidden">
|
|
<div className={"${styles.paddingX} ${styles.flexCenter}"}>
|
|
<div className={"${styles.boxWidth}"}><Navbar/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className={"bg-primary ${styles.flexStart}"}>
|
|
<div className={"${styles.boxWidth}"}><Hero/></div>
|
|
</div>
|
|
<div className={"bg-primary ${styles.paddingX} ${styles.flexStart}"}>
|
|
<div className={"${styles.boxWidth}"}>
|
|
<Stats/> <Billing/> <Business/> <CardDeal/> <Testimonials/> <Clients/> <CTA/> <Footer/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App; |