# NavbarContent4

This code defines a responsive navigation bar component (`NavbarContent4`) that splits the navigation items into two groups, displaying them around a central logo on larger screens and using a popper menu with a logo and "Get Started" button on smaller screens. It dynamically adjusts layout and behavior based on screen size using Material-UI's breakpoints and conditional rendering.

{% hint style="info" %}
All available props for the NavbarContent4 component are defined and handled within **Component usage path** file. This allows for easy modifications to the content of the NavbarContent section.
{% endhint %}

**Component path**: `src/blocks/navbar/navbar-content/NavbarContent4.tsx`

**Component usage path:**  `src/app/blocks/navbar/navbar4/page.tsx`

**Preview link:** [**https://www.saasable.io/blocks/navbar/navbar4**](https://www.saasable.io/blocks/navbar/navbar4)

## Props Details

| Prop              | Type                                                                                                           | Description                                                    | Displayed as                                                |
| ----------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------- | ----------------------------------------------------------- |
| **navItems**      | Array of [`NavItemProps`](/saasable/ui-kit/development/components/navbar/navmenu.md#navitems-props) (Optional) | nav items using `NavItemProps` interface for item details.     | It will display navigation items and sections.              |
| **primaryBtn**    | `ButtonProps` (Optional)                                                                                       | Optional properties for the primary button.                    | `{ children: 'Get Started' }`                               |
| **secondaryBtn**  | `ButtonProps` (Optional)                                                                                       | Optional properties for the secondary button.                  | `{ children: 'Buy Now' }`                                   |
| **customization** | `boolean` (Optional)                                                                                           | Optional prop to display customization section.                | It will display theme customization section.                |
| landingBaseUrl    | `string`                                                                                                       | The base URL for the landing page; used for the logo redirect. | A **clickable logo** that sends users to the given page.    |
| selectedTheme     | `Theme`                                                                                                        | The currently selected theme mode.                             | Passed to `<Customization selectedTheme={selectedTheme} />` |


---

# 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:

```
GET https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/navbar/navbar-content/navbarcontent4.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
