feat: add animation
Docker Build and Push / build-and-push (push) Successful in 7m14s

This commit is contained in:
2026-02-25 10:11:22 +07:00
parent ecaaf437f0
commit 5ce2890023
12 changed files with 191 additions and 37 deletions
+4 -2
View File
@@ -207,8 +207,10 @@ export default function FormsPage() {
</div>
) : forms.length > 0 ? (
<div className="grid gap-5 sm:grid-cols-2">
{forms.map((form) => (
<FormCard key={form.id} form={form} />
{forms.map((form, index) => (
<div key={form.id} className="animate-float-in" style={{ animationDelay: `${index * 0.08}s` }}>
<FormCard form={form} />
</div>
))}
</div>
) : (