'use client'; import { memo } from 'react'; import { cls } from '@/lib/utils'; import { Sparkles } from './Sparkles'; interface SparklesGradientBackgroundProps { className?: string; gradientColor?: string; accentColor?: string; blurAmount?: string; } const SparklesGradientBackground = ({ className = "", gradientColor = "var(--color-background-accent)", accentColor = "var(--color-background-accent)", blurAmount = "6vw", }: SparklesGradientBackgroundProps) => { return (