'use client'; import { memo } from 'react'; import { cls } from '@/lib/utils'; import { Sparkles } from './Sparkles'; interface RotatingGradientBackgroundProps { className?: string; gradientColorStart?: string; gradientColorEnd?: string; bigCircleSize?: string; smallCircleSize?: string; blurAmount?: string; opacity?: number; showSparkles?: boolean; } const RotatingGradientBackground = ({ className = "", gradientColorStart = "var(--color-background-accent)", gradientColorEnd = "var(--color-background-accent)", bigCircleSize = "28vw", smallCircleSize = "21vw", blurAmount = "10px", opacity = 0.6, showSparkles = true, }: RotatingGradientBackgroundProps) => { return (