{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "tabs-example",
  "title": "Tabs",
  "description": "tabs-example",
  "registryDependencies": [
    "https://intentui.com/r/tabs"
  ],
  "files": [
    {
      "path": "src/components/examples/navigation/tabs/tabs-example.tsx",
      "content": "'use client'\n\nimport { Tab, TabList, TabPanel, Tabs } from '@/components/ui/tabs'\n\nexport default function TabsDemo() {\n  return (\n    <Tabs aria-label=\"Recipe App\">\n      <TabList>\n        <Tab id=\"r\">Recipes</Tab>\n        <Tab id=\"i\">Ingredients</Tab>\n        <Tab id=\"v\">Videos</Tab>\n      </TabList>\n      <TabPanel id=\"r\">\n        Browse through a wide selection of recipes for all occasions and dietary preferences.\n      </TabPanel>\n      <TabPanel id=\"i\">Check the list of ingredients needed for your chosen recipes.</TabPanel>\n      <TabPanel id=\"v\">Watch cooking videos to learn new techniques and recipes.</TabPanel>\n    </Tabs>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/tabs-example/page.tsx"
    }
  ],
  "type": "registry:page"
}