{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "tabs-link-example",
  "title": "Tabs Link",
  "description": "tabs-link-example",
  "registryDependencies": [
    "https://intentui.com/r/tabs"
  ],
  "files": [
    {
      "path": "src/components/examples/navigation/tabs/tabs-link-example.tsx",
      "content": "'use client'\n\nimport { Tab, TabList, Tabs } from '@/components/ui/tabs'\n\nconst navs = [\n  { url: '/', label: 'Home' },\n  { url: 'https://design.intentui.com/themes', label: 'Themes' },\n  { url: '/colors', label: 'Colors' },\n]\n\nexport default function TabsLinkDemo() {\n  return (\n    <Tabs aria-label=\"Navbar\">\n      <TabList items={navs}>\n        {(item) => (\n          <Tab id={item.label} href={item.url}>\n            {item.label}\n          </Tab>\n        )}\n      </TabList>\n    </Tabs>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/tabs-link-example/page.tsx"
    }
  ],
  "type": "registry:page"
}