forked from emre/www_projectmycelium_com
feat: refactor pods page with simplified content and improved animations
- Added agent1.png image asset - Refactored InfiniteMovingCards component with cleaner animation logic and improved duplication handling - Changed default speed from "fast" to "slow" and simplified animation setup - Updated AgentBento title from "Augmented Intelligence Fabric" to "Intelligence Fabric" - Increased Homepod vertical padding on large screens (lg:py-16 to lg:py-24) - Removed "Feature" label from PodsFeatures use
This commit is contained in:
@@ -228,3 +228,17 @@
|
||||
filter: drop-shadow(0 0 6px #90f6ff);
|
||||
transition: opacity 1s ease-out;
|
||||
}
|
||||
|
||||
@keyframes infinite-scroll {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
.animate-infinite-scroll {
|
||||
animation: infinite-scroll var(--animation-duration, 40s) linear infinite;
|
||||
animation-direction: var(--animation-direction, forwards);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user