We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7577637 commit 56fec3dCopy full SHA for 56fec3d
client/src/components/EnigmaticLoadingExperience.tsx
@@ -17,14 +17,14 @@ export default function EnigmaticLoadingExperience() {
17
lastTimeRef.current = currentTime;
18
19
// Smooth sine wave for pulsating (no random perturbation)
20
- setScale(s => {
+ setScale(() => {
21
// Slower, smoother pulse with reduced amplitude
22
const newScale = 1 + 0.15 * Math.sin(currentTime / 1500);
23
return newScale;
24
});
25
26
// Smooth opacity changes
27
- setOpacity(o => {
+ setOpacity(() => {
28
// Slower, gentler opacity shift
29
const newOpacity = 0.7 + 0.2 * Math.sin(currentTime / 2000);
30
return newOpacity;
0 commit comments