'use client'; import { useRouter } from 'next/navigation'; import { motion } from 'framer-motion'; export default function CheckoutCancelPage() { const router = useRouter(); // Note: Removed auto-redirect to allow offset order state restoration to work // User can manually click "Try Again" to return to calculator return (
{/* Cancel Header */}
⚠️

Checkout Cancelled

Your payment was not processed

{/* Information Card */}

What happened?

You cancelled the checkout process before completing your payment. No charges have been made to your card.

💡 Your climate impact matters

Every ton of CO₂ offset helps combat climate change. Consider completing your purchase to make a positive impact on our planet.

{/* Why Offset Section */}

🌊 Why Carbon Offsetting Matters

Protect Marine Ecosystems: Reduce ocean acidification and protect marine life.

Support Verified Projects: All projects are certified and verified for real climate impact.

Transparent Impact: Track exactly where your contribution goes and the impact it creates.

{/* Action Buttons */} {/* Help Section */}

Need help with your order?

Contact Support
); }