{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "aurora-background", "title": "Aurora Background", "description": "Animated aurora-style gradient backdrop using CSS keyframes", "files": [ { "path": "registry/pioneerui/aurora-background.tsx", "content": "\"use client\"\n\nimport React, { type CSSProperties } from \"react\"\nimport { cn } from \"@/lib/utils\"\n\nexport interface AuroraBackgroundProps extends React.HTMLAttributes {\n children?: React.ReactNode\n showRadialGradient?: boolean\n}\n\nexport function AuroraBackground({\n className,\n children,\n showRadialGradient = true,\n ...props\n}: AuroraBackgroundProps) {\n return (\n \n \n \n \n
{children}
\n \n )\n}\n", "type": "registry:ui", "target": "components/pioneerui/aurora-background.tsx" } ], "type": "registry:ui" }