import { MeshGradient } from '@paper-design/shaders-react';
export default function CustomMeshGradient() {
return (
<MeshGradient
colors={['#ff6b6b', '#4ecdc4', '#45b7d1', '#96ceb4']}
distortion={0.6}
speed={0.15}
swirl={0.6}
style={{
position: 'fixed',
inset: 0,
width: '100vw',
height: '100vh',
zIndex: -1
}}
/>
);
}