fix: replace framer-motion FadeIn with CSS keyframe animations in hero to fix rendering issue

This commit is contained in:
ashim-hq
2026-04-24 00:31:13 +08:00
parent 99c64f7471
commit 9d751e72f3
2 changed files with 33 additions and 31 deletions
+11
View File
@@ -18,3 +18,14 @@
.tool-card:hover {
border-color: var(--cat-color);
}
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}