16 lines
620 B
TypeScript
16 lines
620 B
TypeScript
import React from 'react';
|
|
|
|
const AnimatedBackground = () => {
|
|
return (
|
|
<div className="absolute inset-0 z-0 overflow-hidden">
|
|
<div className="absolute inset-0 bg-gradient-to-br from-background-light via-background to-background-dark" />
|
|
<div className="absolute inset-0 animate-pulse-slow">
|
|
<div className="absolute top-1/4 left-1/4 w-96 h-96 bg-primary/10 rounded-full filter blur-3xl opacity-50" />
|
|
<div className="absolute bottom-1/4 right-1/4 w-96 h-96 bg-secondary/10 rounded-full filter blur-3xl opacity-50" />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AnimatedBackground;
|