{"$schema":"https://ui.shadcn.com/schema/registry-item.json","author":"Eduardo Calvo <educlopez93@gmail.com>","css":{},"dependencies":["motion"],"description":"Minimal hero block with clean typography","devDependencies":[],"files":[{"content":"\"use client\";\n\nimport { cn } from \"@/lib/utils\";\nimport { motion, useReducedMotion } from \"motion/react\";\n\nexport function HeroMinimal() {\n  const shouldReduceMotion = useReducedMotion();\n\n  return (\n    <section aria-labelledby=\"hero-minimal-heading\">\n      <div className=\"flex min-h-[500px] items-center justify-center py-24 md:py-32\">\n        <motion.div\n          className=\"mx-auto max-w-2xl px-6 text-center\"\n          initial={shouldReduceMotion ? { opacity: 1 } : { opacity: 0 }}\n          transition={\n            shouldReduceMotion\n              ? { duration: 0 }\n              : { duration: 0.4, ease: [0.23, 1, 0.32, 1] }\n          }\n          viewport={{ once: true }}\n          whileInView={shouldReduceMotion ? { opacity: 1 } : { opacity: 1 }}\n        >\n          <motion.h1\n            className=\"font-bold text-4xl tracking-tight md:text-5xl lg:text-6xl\"\n            id=\"hero-minimal-heading\"\n            initial={\n              shouldReduceMotion ? undefined : { letterSpacing: \"0.05em\" }\n            }\n            transition={\n              shouldReduceMotion\n                ? { duration: 0 }\n                : { duration: 0.6, ease: [0.23, 1, 0.32, 1] }\n            }\n            viewport={{ once: true }}\n            whileInView={\n              shouldReduceMotion ? undefined : { letterSpacing: \"0em\" }\n            }\n          >\n            Less is more\n          </motion.h1>\n          <p className=\"mt-6 text-foreground/60 text-lg\">\n            Simple, elegant components that speak for themselves.\n          </p>\n          <a\n            className={cn(\n              \"mt-10 inline-flex items-center gap-1 font-medium text-foreground text-sm underline underline-offset-4 transition-colors hover:text-foreground/70\",\n              \"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2\"\n            )}\n            href=\"#\"\n          >\n            Explore components →\n          </a>\n        </motion.div>\n      </div>\n    </section>\n  );\n}\n\nexport default HeroMinimal;\n","path":"index.tsx","target":"components/smoothui/header-6/index.tsx","type":"registry:block"}],"name":"header-6","registryDependencies":[],"title":"Header 6","type":"registry:block"}