diff --git a/src/pages/HomePage/sections/Splash.tsx b/src/pages/HomePage/sections/Splash.tsx
index e786daa..cd555b0 100644
--- a/src/pages/HomePage/sections/Splash.tsx
+++ b/src/pages/HomePage/sections/Splash.tsx
@@ -25,14 +25,10 @@ export default function SplashSection() {
}, 2000);
};
- const waves = Array.from({ length: 3 }).map((_, i) => {
- return { scale: 2 + i * 2, delay: i * 0.2 };
- });
-
return (
@@ -40,49 +36,68 @@ export default function SplashSection() {
- {/* Expanding Water Splash Background */}
-
-
-
- {/* Photorealistic Waves */}
- {isSplashing && waves.map((w, i) => (
-
- ))}
+
+ {/* Rising Water Waves */}
+ {isSplashing && (
+
+ {/* Layer 1: Foam / Lightest Blue */}
+
+
+
+
+
+ {/* Layer 2: Medium Blue */}
+
+
+
+
+
+ {/* Layer 3: Dark Blue (Main) */}
+
+
+
+
+
+ )}
);
}