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:
parent
a1d2e252f2
commit
d1ec755aa2
1 changed files with 4 additions and 3 deletions
|
|
@ -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')}
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue