All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 39s
CI / test-python-voice (push) Successful in 37s
CI / test-bqas (push) Successful in 37s
Neue statische Website fuer Kinder (6-12 Jahre) mit 8 Holzprojekten, SVG-Illustrationen, Sicherheitshinweisen und kindgerechtem Design. Next.js 15 + Tailwind + Framer Motion. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
355 B
TypeScript
16 lines
355 B
TypeScript
export const fadeInUp = {
|
|
initial: { opacity: 0, y: 20 },
|
|
animate: { opacity: 1, y: 0 },
|
|
transition: { duration: 0.5 },
|
|
}
|
|
|
|
export const staggerContainer = {
|
|
animate: { transition: { staggerChildren: 0.1 } },
|
|
}
|
|
|
|
export const scaleIn = {
|
|
initial: { opacity: 0, scale: 0.9 },
|
|
animate: { opacity: 1, scale: 1 },
|
|
transition: { duration: 0.4 },
|
|
}
|