# Breadcrumbs

Vurox has basic breadcrumbs with some designs with ant design breadcrumbs

```jsx
import { 
	VuroxBreadcrumbs
} from 'Components/breadcrumbs'
```

Then

```jsx
<VuroxBreadcrumbs 
    pagename='Email' 
    links={
        [ 
            ['Home', '/', ''], 
            ['Application','/application'], 
            [ 'Email', '/mail', 'active'] 
        ]
    } 
/>
```

| Components Props | Value                                                                                                                                                                                                                                                                                                                                                                                            |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **`pagename`**   | `(String)`Name of page.For example : Email                                                                                                                                                                                                                                                                                                                                                       |
| **`links`**      | <p><strong><code>(Array)</code> </strong>  Contains multidimensional array.</p><p>                      Values contained:</p><p>                             <strong><code>name</code></strong>: Name of the page/links</p><p>                             <strong><code>url</code></strong>,</p><p>                             <strong><code>active class</code></strong>: default: active</p> |

Also you can use breadcrumbs from ant design

```jsx
import {Breadcrumb} from 'antd';
```

```jsx
<Breadcrumb>
    <Breadcrumb.Item>Ant Design</Breadcrumb.Item>
    <Breadcrumb.Item>
        <a href="">Component</a>
    </Breadcrumb.Item>
    <Breadcrumb.Item overlay={menu}>
        <a href="">General</a>
    </Breadcrumb.Item>
    <Breadcrumb.Item>Button</Breadcrumb.Item>
</Breadcrumb>
```

>


---

# Agent Instructions: 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://tophivetheme.gitbook.io/vurox/components/breadcrumbs.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.
