'use client'; import { memo } from 'react'; import { cls } from '@/lib/utils'; interface GlowingOrbBackgroundProps { className?: string; blurAmount?: string; glowColor?: string; backgroundColor?: string; } const GlowingOrbBackground = ({ className = "", blurAmount = "57px", glowColor = "var(--color-primary-cta)", backgroundColor = "var(--background)", }: GlowingOrbBackgroundProps) => { return (
); }; GlowingOrbBackground.displayName = 'GlowingOrbBackground'; export default memo(GlowingOrbBackground);