"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; import "./FloatingGradientBackground.css"; interface FloatingGradientBackgroundProps { className?: string; } const FloatingGradientBackground = ({ className = "", }: FloatingGradientBackgroundProps) => { return (
); }; FloatingGradientBackground.displayName = "FloatingGradientBackground"; export default memo(FloatingGradientBackground);