fix(landing): update ShopCheckoutPage styling

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Quinn Ftw 2025-12-28 17:50:36 -08:00
parent a1d2e252f2
commit d1ec755aa2

View file

@ -294,12 +294,12 @@ export default function ShopCheckoutPage() {
</div>
<motion.button
className="continue-button"
onClick={handleContinueToAccount}
onClick={handleContinueFromReview}
onMouseEnter={() => playSound('button-hover')}
whileHover={{ scale: 1.02 }}
whileTap={{ scale: 0.98 }}
>
Continue to Account
{isAuthenticated ? 'Continue to Payment' : 'Continue to Account'}
</motion.button>
</div>
</div>
@ -481,7 +481,8 @@ export default function ShopCheckoutPage() {
className="back-button"
onClick={() => {
playSound('button-click')
setCurrentStep('account')
// Go back to review for auth users (no account step), account for guests
setCurrentStep(isAuthenticated ? 'review' : 'account')
}}
onMouseEnter={() => playSound('button-hover')}
>