@codesinger0/shared-components 1.1.77 → 1.1.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Hero.jsx +4 -4
- package/package.json +1 -1
package/dist/components/Hero.jsx
CHANGED
|
@@ -103,17 +103,17 @@ const Hero = ({
|
|
|
103
103
|
</p>
|
|
104
104
|
{additionalElements}
|
|
105
105
|
<div className="flex flex-wrap gap-4 justify-center items-center">
|
|
106
|
-
<CTAButton onClick={onCtaClick} className="shadow-lg">
|
|
107
|
-
{ctaText}
|
|
108
|
-
</CTAButton>
|
|
109
106
|
{secondaryButtonLabel && onSecondaryClick && (
|
|
110
107
|
<button
|
|
111
108
|
onClick={onSecondaryClick}
|
|
112
|
-
className="px-6 py-3 border-2 border-primary text-primary bg-main rounded-lg font-semibold hover:bg-primary hover:text-
|
|
109
|
+
className="px-6 py-3 border-2 border-primary text-primary bg-main rounded-lg font-semibold hover:bg-primary hover:text-primary-dark transition-all duration-300 shadow-lg"
|
|
113
110
|
>
|
|
114
111
|
{secondaryButtonLabel}
|
|
115
112
|
</button>
|
|
116
113
|
)}
|
|
114
|
+
<CTAButton onClick={onCtaClick} className="shadow-lg">
|
|
115
|
+
{ctaText}
|
|
116
|
+
</CTAButton>
|
|
117
117
|
</div>
|
|
118
118
|
</motion.div>
|
|
119
119
|
</div>
|