// @ts-nocheck import { motion } from 'framer-motion'; import React from 'react'; import { cn } from '../../lib/utils'; export const BackgroundGradient = ({ children, className, containerClassName, animate = true, }: { children?: React.ReactNode; className?: string; containerClassName?: string; animate?: boolean; }) => { const variants = { initial: { backgroundPosition: '0 50%', }, animate: { backgroundPosition: ['0, 50%', '100% 50%', '0 50%'], }, }; return (
{children}
); };