> For the complete documentation index, see [llms.txt](https://wpdocs.gitbook.io/react-maisonco/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wpdocs.gitbook.io/react-maisonco/content-management/home1.md).

# Home1

![](/files/-LqKrRRg7t1E4NS3-4sr)

#### 1. Logo : If you want to change logo, please go to this located and you can see folder has logo in there.

```
Located in: src\components\common\headers\common\logo.jsx file 

<!-- logo-->

<Link to={`${process.env.PUBLIC_URL}/`} className="custom-logo-link">
    <span className="screen-reader-text">MaisonCo Single Property</span>
    <img src={`${process.env.PUBLIC_URL}/assets/images/${props.logo}`} alt="" className="img-fluid" />
</Link>;
```

#### 2. Menu : Change name of menu&#x20;

```
Located in : public\api\menu.json file

<!-- sample json data -->

{
    "name": "Home",
    "link": "/",
    "children": [
        {
            "name": "Home 2",
            "link": "/home-2",
            "children": []
        },
        {
            "name": "Home 3",
            "link": "/home-3",
            "children": []
        },
        {
            "name": "Home 4",
            "link": "/home-4",
            "children": []
        }
    ]
}
```

#### 3. Schedule a visit : **you can change name of section when go to folder has this file and find a code below.**

```
Located in : src\components\common\headers\header-one.jsx file

<button type="button" className="btn btn-outline-primary">Schedule a visit</button>
```

#### 4. SliderShow&#x20;

```
  import SliderHome from "./common/slider/slider";

<div className="section-wrapper pt-0 pb-0">
    <SliderHome/>
</div>
```

![](/files/-LqKrYw0n8ouBjBPu3xZ)

#### 5. Overview

```
import OverviewSection from "./sections/overview/overview";

 <div className="section-wrapper">
      <OverviewSection/>
  </div>
```

#### 6. Count Up will be called by a code&#x20;

```
import CounterBlock from "./common/countup/countup";

<div className="section-wrapper">
    <CounterBlock/>
</div>
```

![](/files/-LqKuE9tVM84UfQl7tdk)

7 + 8 : &#x20;

```
import AmenitiesSection from "./sections/amenities/amenities";

<div className="section-wrapper pl-6 pr-6">
    <AmenitiesSection/>
</div>
```

#### 7. Carousel&#x20;

```
import CarouselPage1 from "../../common/slider/slider1" ;
```

#### 8. HTML

```
import Heading from "../../common/heading/heading" ;

 <Heading>BUILDING AMENITIES</Heading>
```

#### 9. How to get  "Our services - Style01" section

```
import OurServicesSection from "./sections/ourservices/ourservices" ;

<div className="section-wrapper">
    <OurServicesSection/>
</div>
```

![](/files/-LqKuLJP0-uNHpjQh3Ua)

#### 10. How to get tabs of "Apartments"

```
import ApartmentsPlansSection from "./sections/ourvalues/ourvalues";

<div className="section-wrapper">
    <ApartmentsPlansSection/>
</div>
```

#### 11. How to get  "Accordion" section

```
import NeighborhoodsSection from "./sections/neighborhoods/neighborhoods";

 <div className="section-wrapper">
     <NeighborhoodsSection />
 </div>
```

![](/files/-LqKuv4vWXS4j8qJSAgH)

#### 12. Select Availability .

```
SELECT AVAILABILITY
```

```
import AvailabilitySection from "./sections/availability/availability" ;


<div className="section-wrapper">
    <AvailabilitySection/>
</div>
```

#### 13. Call to action

```
import CallToActionSection from "./sections/caltoaction/caltoaction" ;

<div className="section-wrapper pb-0">
    <CallToActionSection/>
</div>

```

#### 14. Blog : How to get style for blog

```
import BlogBlockGridStyle2 from "./common/blog/blog1" ;

<div className="section-wrapper" style={{backgroundColor: "#f8f8f8"}}>
    <BlogBlockGridStyle2/>
</div>
```

![](/files/-LqKvNO2hEwgLzbfIDAl)

#### 15. Footer

```
Located in  : src\components\common\footers\footer-one.jsx file 
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wpdocs.gitbook.io/react-maisonco/content-management/home1.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
