fix: remove dot indicators from checkout slideshow

This commit is contained in:
Usman Baig
2026-03-26 23:27:04 +01:00
parent fba1f84ce5
commit 4896089463

View File

@@ -77,22 +77,6 @@ export default function FeatureSlideshow() {
</motion.div>
</AnimatePresence>
{/* Dot indicators */}
<div className="mt-8 flex items-center gap-2">
{slides.map((_, i) => (
<button
key={i}
type="button"
onClick={() => setActiveIndex(i)}
className={`h-2 rounded-full transition-all duration-300 ${
i === activeIndex
? 'w-6 bg-brand-orange'
: 'w-2 bg-white/25 hover:bg-white/40'
}`}
aria-label={`Go to slide ${i + 1}`}
/>
))}
</div>
</div>
</div>
)