> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Gezinti yolu

<Frame>
  <img src="https://mintcdn.com/twenty/JIRRbviz5phT8G2L/images/user-guide/fields/field.png?fit=max&auto=format&n=JIRRbviz5phT8G2L&q=85&s=d05539b92dcec1953026ba95f2bfe07d" alt="Başlık" width="1440" height="680" data-path="images/user-guide/fields/field.png" />
</Frame>

Bir gezinti yolu çubuğu oluşturur.

<Tabs>
  <Tab title="Kullanım">
    ```jsx theme={null}
    import { BrowserRouter } from "react-router-dom";
    import { Breadcrumb } from "@/ui/navigation/bread-crumb/components/Breadcrumb";

    export const MyComponent = () => {
      const breadcrumbLinks = [
        { children: "Home", href: "/" },
        { children: "Category", href: "/category" },
        { children: "Subcategory", href: "/category/subcategory" },
        { children: "Current Page" },
      ];

      return (
        <BrowserRouter>
          <Breadcrumb className links={breadcrumbLinks} />
        </BrowserRouter>
        )
    };
    ```
  </Tab>

  <Tab title="Özellikler">
    | Özellikler  | Tür  | Açıklama                                                                                                                                                                                                                                                  |
    | ----------- | ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | className   | dize | Ek stil için isteğe bağlı sınıf adı                                                                                                                                                                                                                       |
    | bağlantılar | dizi | Her biri bir gezinme çubuğu bağlantısını temsil eden nesneler dizisi. Her nesne, bağlantının metin içeriğini tanımlayan bir `children` özelliğine ve isteğe bağlı olarak tıklanan bağlantının gidilecek URL'sini belirten bir `href` özelliğine sahiptir. |
  </Tab>
</Tabs>
