fix: remove framer-motion from HeroVideo for instant content visibility

This commit is contained in:
Unchained
2026-03-31 13:22:45 +02:00
parent 8eb9f24b33
commit 1c5ec1a271
3 changed files with 48 additions and 48 deletions

View File

@@ -261,6 +261,25 @@
animation: scrollBounce 1.5s ease-in-out infinite;
}
/* ============================================
FADE SLIDE UP ANIMATION
============================================ */
@keyframes fadeSlideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeSlideUp {
animation: fadeSlideUp 0.6s ease-out both;
}
/* ============================================
UTILITIES
============================================ */