{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "animated-navbar-shadcnui", "type": "registry:component", "title": "Animated Navbar", "description": "Navigation bar with animated underline indicator", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "lucide-react", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/navigation/animated-navbar.tsx", "content": "\"use client\";\n\nimport { motion } from \"framer-motion\";\nimport { useState } from \"react\";\n\nconst navItems = [\"Home\", \"About\", \"Services\", \"Contact\"];\n\nexport function AnimatedNavbar() {\n const [activeIndex, setActiveIndex] = useState(0);\n\n return (\n \n );\n}\n", "type": "registry:component", "target": "components/uitripled/animated-navbar-shadcnui.tsx" } ] }