{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "glassmorphism-hero-block-shadcnui",
  "type": "registry:block",
  "title": "Glassmorphism Hero",
  "description": "Modern hero section with glassmorphism effects, animated background orbs, and CTA buttons",
  "registryDependencies": [
    "button"
  ],
  "dependencies": [
    "framer-motion",
    "react"
  ],
  "files": [
    {
      "path": "@uitripled/react-shadcn/src/components/sections/glassmorphism-hero-block.tsx",
      "content": "\"use client\";\n\nimport { Button } from \"@/components/ui/button\";\nimport { ArrowRight, Sparkles } from \"lucide-react\";\n\nexport function GlassmorphismHeroBlock() {\n  return (\n    <section className=\"relative flex min-h-screen items-center justify-center overflow-hidden px-6 py-32\">\n      {/* Animated background gradient orbs */}\n      <div className=\"absolute inset-0 -z-10\">\n        <div className=\"absolute left-1/4 top-1/4 h-[600px] w-[600px] animate-pulse rounded-full bg-foreground/[0.03] blur-3xl\" />\n        <div\n          className=\"absolute bottom-1/4 right-1/4 h-[600px] w-[600px] animate-pulse rounded-full bg-foreground/[0.03] blur-3xl\"\n          style={{ animationDelay: \"1s\" }}\n        />\n      </div>\n\n      <div className=\"mx-auto max-w-7xl space-y-10 text-center\">\n        <div className=\"inline-flex items-center gap-2 rounded-full border border-border/50 bg-background/50 px-4 py-1.5 text-sm font-medium text-foreground/70 backdrop-blur-xl transition-all duration-300 hover:border-border\">\n          <Sparkles className=\"h-3.5 w-3.5\" />\n          <span>Introducing our new platform</span>\n        </div>\n\n        <h1 className=\"text-6xl font-bold leading-[0.9] tracking-tight md:text-8xl lg:text-9xl\">\n          <span className=\"block\">Build amazing</span>\n          <span className=\"mt-4 block\">products</span>\n        </h1>\n\n        <p className=\"mx-auto max-w-2xl text-lg leading-relaxed text-muted-foreground md:text-xl\">\n          The complete platform for building modern applications. Fast, secure,\n          and scalable by default.\n        </p>\n\n        <div className=\"flex flex-col justify-center gap-4 pt-8 sm:flex-row\">\n          <Button size=\"lg\" className=\"group h-12 rounded-full px-8 text-base\">\n            Get Started\n            <ArrowRight className=\"ml-2 h-4 w-4 transition-transform group-hover:translate-x-1\" />\n          </Button>\n          <Button\n            size=\"lg\"\n            variant=\"outline\"\n            className=\"h-12 rounded-full px-8 text-base hover:bg-foreground/5\"\n          >\n            View Demo\n          </Button>\n        </div>\n      </div>\n    </section>\n  );\n}\n",
      "type": "registry:block",
      "target": "components/uitripled/glassmorphism-hero-block-shadcnui.tsx"
    }
  ]
}