diff --git a/above.html b/above.html
new file mode 100644
index 00000000..83d26514
--- /dev/null
+++ b/above.html
@@ -0,0 +1,27 @@
+
+
+
+
+
+ Fancy Button
+
+
+
+
+
+
diff --git a/src/components/HeroSection.jsx b/src/components/HeroSection.jsx
index 9835860e..65d8507a 100644
--- a/src/components/HeroSection.jsx
+++ b/src/components/HeroSection.jsx
@@ -48,18 +48,25 @@ function HeroSection() {
{slides.map((slide, index) => (

+ src={slide.image}
+ alt={slide.alt}
+ className="w-full h-auto block transform transition-transform duration-500 hover:scale-105"
+ tabIndex={-1}
+/>
+
{slide.buttonLabel}
+
))}
diff --git a/tailwind.config.js b/tailwind.config.js
index f11d1e5f..dbb869d7 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -5,7 +5,18 @@ export default {
"./src/**/*.{js,jsx,ts,tsx}"
],
theme: {
- extend: {},
+ extend: {
+ keyframes: {
+ fadeIn: {
+ '0%': { opacity: '0', transform: 'translateY(10px)' },
+ '100%': { opacity: '1', transform: 'translateY(0)' },
+ },
+ },
+ animation: {
+ fadeIn: 'fadeIn 0.8s ease-out forwards',
+ },
+ },
},
plugins: [],
};
+