import { cn } from '@/utils/cn'; interface GradientBackgroundProps { children: React.ReactNode; className?: string; } export function GradientBackground({ children, className, ...props }: GradientBackgroundProps) { return (
{children}
); }