interface AnimatedGradientBorderProps { children: React.ReactNode; className?: string; } const gradientStyle: React.CSSProperties = { background: `conic-gradient( from 0deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.6), rgba(34, 211, 238, 0.8), rgba(99, 102, 241, 0.3) )`, filter: 'blur(40px)', }; const glowStyle: React.CSSProperties = { background: `conic-gradient( from 0deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.3), rgba(34, 211, 238, 0.4), rgba(99, 102, 241, 0.1) )`, filter: 'blur(15px)', }; export const AnimatedGradientBorder = ({ children, className = '', }: AnimatedGradientBorderProps) => { return (