{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "lp-navbar-1", "title": "LP Navbar 1", "description": "Landing page navigation with mobile menu and logo", "registryDependencies": [ "button", "https://shadcndesign-free.vercel.app/r/styles.json", "https://shadcndesign-free.vercel.app/r/logo.json" ], "files": [ { "path": "components/pro-blocks/landing-page/lp-navbars/lp-navbar-1.tsx", "content": "\"use client\";\n\nimport { Logo } from \"@/components/pro-blocks/logo\";\nimport { Button } from \"@/components/ui/button\";\nimport { Menu, X } from \"lucide-react\";\nimport { useState } from \"react\";\nimport Link from \"next/link\";\n\nconst MENU_ITEMS = [\n { label: \"Products\", href: \"#\" },\n { label: \"Use cases\", href: \"#\" },\n { label: \"Docs\", href: \"#\" },\n { label: \"Pricing\", href: \"#\" },\n { label: \"FAQ\", href: \"#\" },\n] as const;\n\ninterface NavMenuItemsProps {\n className?: string;\n}\n\nconst NavMenuItems = ({ className }: NavMenuItemsProps) => (\n