import { cn } from "@/lib/utils"; interface CellularBackgroundProps { children: React.ReactNode; className?: string; } const CellularBackground = ({ children, className }: CellularBackgroundProps) => { return (
{/* Animated floating orbs */}
{/* Cellular pattern overlay */}
{/* Content */}
{children}
); }; export default CellularBackground;