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

# مسار التنقّل

<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="رأس الصفحة" width="1440" height="680" data-path="images/user-guide/fields/field.png" />
</Frame>

يعرض شريط مسار التنقّل.

<Tabs>
  <Tab title="استخدام">
    ```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="المحددات">
    | الخصائص   | النوع  | الوصف                                                                                                                                                                                 |
    | --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | اسم الفئة | نص     | اسم فئة اختياري لتنسيقات إضافية                                                                                                                                                       |
    | روابط     | مصفوفة | مصفوفة من الكائنات، يمثّل كلٌّ منها رابطًا في مسار التنقّل. كل كائن يحتوي على خاصية `children` (محتوى النص للرابط) وخاصية `href` اختيارية (رابط URL للتنقل إليه عند النقر على الرابط) |
  </Tab>
</Tabs>
