Refactor index.html to remove inline Tailwind configuration and link to external JS file. Enhance script.js with modal functionality for 'Get Started' and 'Learn More' buttons, including dynamic content and hover effects for cards.

This commit is contained in:
Alvin
2025-06-04 09:59:01 +02:00
parent 953e72906d
commit 5444fefbba
3 changed files with 158 additions and 19 deletions

17
js/tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
tailwind.config = {
theme: {
extend: {
animation: {
'float': 'float 3s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'bounce-slow': 'bounce 3s infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
}
}
}
}
}