"use client" import BgGrad from "./bg-grad" import { motion } from "motion/react" interface NovaOrbProps { size?: number className?: string } function NovaOrb({ size = 200, className = "" }: NovaOrbProps) { return (
) } export default NovaOrb