{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "navbar-split", "type": "registry:ui", "title": "Navbar Split", "description": "A navigation bar with links split between left and right sections.", "registryDependencies": [ "button" ], "files": [ { "path": "registry/ruixenui/navbar-split.tsx", "content": "\"use client\";\n\nimport * as React from \"react\";\nimport Link from \"next/link\";\nimport { cn } from \"@/lib/utils\";\nimport { Button } from \"@/components/ui/button\";\n\nexport interface NavbarSplitProps {\n logo?: React.ReactNode;\n leftLinks?: { label: string; href: string; active?: boolean }[];\n rightLinks?: { label: string; href: string }[];\n className?: string;\n}\n\nexport default function NavbarSplit({\n logo = Logo,\n leftLinks = [\n { label: \"Products\", href: \"#\", active: true },\n { label: \"Solutions\", href: \"#\" },\n { label: \"Pricing\", href: \"#\" },\n ],\n rightLinks = [\n { label: \"Docs\", href: \"#\" },\n { label: \"Support\", href: \"#\" },\n ],\n className,\n}: NavbarSplitProps) {\n return (\n
\n
\n
\n \n {logo}\n \n \n
\n
\n \n \n
\n
\n
\n );\n}\n", "type": "registry:ui", "target": "components/ruixen/navbar-split.tsx" } ] }