"use client"; import { cls } from "@/lib/utils"; interface AnimatedAuroraBackgroundProps { className?: string; showRadialGradient?: boolean; /** * Inverts the aurora colors for better visibility. * Use `true` for light backgrounds (makes aurora darker/inverted) * Use `false` for dark backgrounds (keeps aurora colors vibrant) */ invertColors: boolean; } const AnimatedAuroraBackground = ({ className, showRadialGradient = true, invertColors, }: AnimatedAuroraBackgroundProps) => { return (
); }; export default AnimatedAuroraBackground;