{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "navbar-simple", "type": "registry:ui", "title": "Navbar Simple", "description": "A clean, simple navigation bar with logo, links, and action buttons.", "registryDependencies": [ "button" ], "files": [ { "path": "registry/ruixenui/navbar-simple.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 NavbarSimpleProps {\n logo?: React.ReactNode;\n links?: { label: string; href: string; active?: boolean }[];\n actions?: React.ReactNode;\n className?: string;\n}\n\nexport default function NavbarSimple({\n logo = Logo,\n links = [\n { label: \"Home\", href: \"#\", active: true },\n { label: \"Features\", href: \"#\" },\n { label: \"Pricing\", href: \"#\" },\n { label: \"About\", href: \"#\" },\n ],\n actions,\n className,\n}: NavbarSimpleProps) {\n return (\n
\n
\n
\n \n {logo}\n \n \n
\n
\n {actions ?? (\n <>\n \n \n \n )}\n
\n
\n
\n );\n}\n", "type": "registry:ui", "target": "components/ruixen/navbar-simple.tsx" } ] }