"usageCode": "import { LimelightNav } from \"@/components/ui/limelight-nav\";\nimport { Home, Bookmark, PlusCircle, User, Settings } from \"lucide-react\";\n\nexport default function Example() {\n return (\n <div className=\"flex items-center justify-center p-12 h-[300px] w-full bg-neutral-950 rounded-xl border border-neutral-800\">\n <LimelightNav \n limelightColor=\"#06b6d4\"\n className=\"bg-neutral-900/50\"\n items={[\n { id: '1', icon: <Home />, label: 'Home' },\n { id: '2', icon: <Bookmark />, label: 'Bookmarks' },\n { id: '3', icon: <PlusCircle />, label: 'Add' },\n { id: '4', icon: <User />, label: 'Profile' },\n { id: '5', icon: <Settings />, label: 'Settings' }\n ]}\n />\n </div>\n );\n}"
0 commit comments