feat: add dotted glow background and enhance stack section animations

This commit is contained in:
2025-10-22 11:30:26 +02:00
parent b46df781f8
commit 593201ae10
4 changed files with 381 additions and 49 deletions

View File

@@ -24,5 +24,16 @@
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
"extend": {
"animation": {
"pulse-slow": "pulse 6s ease-in-out infinite"
},
"keyframes": {
"pulse": {
"0%, 100%": { "opacity": "1" },
"50%": { "opacity": "0.6" }
}
}
}
}