Home 2

Header, Footer and some Section it will look the same Home1 . ( src\components\home-2.jsx)

1. HTML

import OverviewFluidSection from "./sections/overview-fluid/overview-fluid";


<div className="section-wrapper">
    <OverviewFluidSection/>
</div>

2. Apartment Block section

import ApartmentBlock from "./common/apartment/apartment";

<div className="section-wrapper">
    <ApartmentBlock number={3} columns={3} noGutters={true}/>
</div>
import CarouselPage2 from "./common/slider/slider2";

<div className="section-wrapper">
    <CarouselPage2/>
</div>

4. Call "Our Services" section by a code

import IconBoxSection from "./sections/icon-box/icon-box";

<div className="section-wrapper">
    <IconBoxSection/>
</div>

5. Call "Our Team" section by a code

import OurTeamSection from "./sections/our-team/our-team";

<div className="section-wrapper">
    <OurTeamSection/>
</div>
import GallerrySection from "./sections/gallerry/gallerry";

<div className="section-wrapper">
    <div className="container">
        <GallerrySection flexRow={false}/>
    </div>
</div>

Last updated