Add Mollie checkout flow, billing UI, and payment UX polish #71

Merged
uz1mani merged 73 commits from staging into main 2026-03-28 10:28:03 +00:00
14 changed files with 909 additions and 102 deletions
Showing only changes of commit 4896089463 - Show all commits

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>
)