{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "hero-section-shadcnui", "type": "registry:page", "title": "Hero Section", "description": "Hero section with staggered text and button reveal", "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/hero-section.tsx", "content": "\"use client\";\n\nimport { Button } from \"@/components/ui/button\";\nimport { motion, type Variants } from \"framer-motion\";\nimport { ArrowRight, Sparkles } from \"lucide-react\";\n\nexport function HeroSection() {\n const containerVariants: Variants = {\n hidden: { opacity: 0 },\n visible: {\n opacity: 1,\n transition: {\n staggerChildren: 0.15,\n delayChildren: 0.1,\n },\n },\n };\n\n const itemVariants: Variants = {\n hidden: { opacity: 0, y: 20 },\n visible: {\n opacity: 1,\n y: 0,\n transition: { duration: 0.5, ease: \"easeOut\" },\n },\n };\n\n return (\n \n \n \n \n New Features Available\n \n \n\n \n Build Amazing\n
\n \n User Experiences\n \n \n\n \n Create stunning, animated interfaces with our collection of\n production-ready components. Built with React, Framer Motion, and\n TailwindCSS.\n \n\n \n \n \n \n\n \n
\n
\n 10k+\n
\n
Downloads
\n
\n
\n
\n
50+
\n
Components
\n
\n
\n
\n
\n 100%\n
\n
Open Source
\n
\n \n \n );\n}\n", "type": "registry:page", "target": "components/uitripled/hero-section-shadcnui.tsx" } ] }