diff --git a/frontend/app/globals.css b/frontend/app/globals.css index 25e585d..2ef44a3 100644 --- a/frontend/app/globals.css +++ b/frontend/app/globals.css @@ -93,3 +93,16 @@ @apply font-sans; } } + +@keyframes blob { + 0%, 100% { transform: translateY(10px); } + 50% { transform: translate(-10px); } +} + +.animate-blob { + animation: blob 4s ease-in-out infinite; +} + +.animation-delay-1000 { + animation-delay: -2s; +} diff --git a/frontend/components/ui/gradient-card-showcase.tsx b/frontend/components/ui/gradient-card-showcase.tsx index 206fc70..1466821 100644 --- a/frontend/components/ui/gradient-card-showcase.tsx +++ b/frontend/components/ui/gradient-card-showcase.tsx @@ -47,20 +47,11 @@ export const SkewCard = ({ {/* Content */} -
{description}