Tabs (routing)

A responsive navigation component that displays a list of links as tabs. Used primarily for main navigation sections.

The Tabs component accepts an array of objects with the following properties:
- url: The destination path for the tab
- label: The display text for the tab

<Tabs
  values={[
    { url: '/admin/companies', label: 'Companies' },
    { url: '/admin/deals', label: 'Deals' },
    { url: '/admin/users', label: 'Users' },
    // ... more tabs
  ]}
/>