import { motion } from 'framer-motion'; /** * Animated moving gradient background. * Uses CSS variables for colors to support theme switching. * Lightweight - pure CSS gradients with Framer Motion animation. */ export function MovingGradient() { return (
{/* Base background */}
{/* Animated gradient layer */} {/* Second animated layer - moves in opposite direction */} {/* Subtle noise texture overlay */}
); }