"use client"
interface BgGradProps {
size?: number
className?: string
}
function BgGrad({ size = 400, className = "" }: BgGradProps) {
return (
{/* Large blue orb - right */}
{/* Large blue orb - left */}
{/* Rotated blue orb - top left */}
{/* Rotated blue orb - top right */}
{/* Rotated blue orb - bottom left */}
{/* Central rotated orb */}
{/* Bottom blue orb */}
)
}
export default BgGrad