{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "tabs-orientation-example",
  "title": "Tabs Orientation",
  "description": "tabs-orientation-example",
  "registryDependencies": [
    "https://intentui.com/r/tabs"
  ],
  "files": [
    {
      "path": "src/components/examples/navigation/tabs/tabs-orientation-example.tsx",
      "content": "'use client'\n\nimport { Tab, TabList, TabPanel, Tabs } from '@/components/ui/tabs'\n\nexport default function TabsOrientationDemo() {\n  return (\n    <Tabs orientation=\"vertical\" aria-label=\"E-Learning Platform\">\n      <TabList>\n        <Tab id=\"c\">Courses</Tab>\n        <Tab id=\"e\">Exams</Tab>\n        <Tab id=\"g\">Grades</Tab>\n        <Tab id=\"f\">Forums</Tab>\n        <Tab id=\"p\">Profile</Tab>\n      </TabList>\n      <TabPanel id=\"c\">\n        Enroll in courses and access learning materials on various subjects.\n      </TabPanel>\n      <TabPanel id=\"e\">Take practice exams and quizzes to test your knowledge.</TabPanel>\n      <TabPanel id=\"g\">View your grades and track your academic progress.</TabPanel>\n      <TabPanel id=\"f\">\n        Participate in discussion forums with other students and instructors.\n      </TabPanel>\n      <TabPanel id=\"p\">Update your profile and customize your learning preferences.</TabPanel>\n    </Tabs>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/tabs-orientation-example/page.tsx"
    }
  ],
  "type": "registry:page"
}