{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "hero-minimal", "type": "registry:ui", "title": "Hero", "description": "Centered hero with staggered entrance.", "dependencies": [ "motion" ], "registryDependencies": [ "https://starkui.vercel.app/r/badge.json", "https://starkui.vercel.app/r/button.json", "https://starkui.vercel.app/r/blur-in.json", "https://starkui.vercel.app/r/fade-in.json" ], "files": [ { "path": "registry/starkui/hero-minimal.tsx", "content": "import { Badge } from \"@/components/ui/badge\";\nimport { Button } from \"@/components/ui/button\";\nimport { BlurIn } from \"@/components/ui/blur-in\";\nimport { FadeIn } from \"@/components/ui/fade-in\";\n\nexport function HeroMinimal({\n badge,\n title,\n description,\n primaryCta = \"Get started\",\n secondaryCta = \"Learn more\",\n}: {\n badge?: string;\n title: string;\n description: string;\n primaryCta?: string;\n secondaryCta?: string;\n}) {\n return (\n
\n {badge && (\n \n {badge}\n \n )}\n \n

\n {title}\n

\n
\n \n

{description}

\n
\n \n \n \n \n
\n );\n}\n", "type": "registry:ui", "target": "components/ui/hero-minimal.tsx" } ] }