diff --git a/src/pages/HomePage/sections/Splash.tsx b/src/pages/HomePage/sections/Splash.tsx index 711585e..e786daa 100644 --- a/src/pages/HomePage/sections/Splash.tsx +++ b/src/pages/HomePage/sections/Splash.tsx @@ -22,22 +22,17 @@ export default function SplashSection() { setIsSplashing(true); setTimeout(() => { setIsVisible(false); - }, 1500); + }, 2000); }; - const droplets = Array.from({ length: 40 }).map((_, i) => { - const angle = (i / 40) * Math.PI * 2; - const distance = 200 + Math.random() * 300; - const tx = Math.cos(angle) * distance; - const ty = Math.sin(angle) * distance; - const scale = 0.5 + Math.random() * 1.5; - return { tx, ty, scale, delay: Math.random() * 0.15 }; + const waves = Array.from({ length: 3 }).map((_, i) => { + return { scale: 2 + i * 2, delay: i * 0.2 }; }); return (