'use client'; import { useState } from 'react'; import Image from 'next/image'; interface CheckoutFeature { label: string; } const CHECKOUT_FEATURES: CheckoutFeature[] = [ { label: 'Unlimited Property Reports' }, { label: 'Priority 24/7 Concierge Support' }, { label: 'Advanced Lead Generation Tools' }, ]; export function PaymentCheckoutForm() { const [isProcessing, setIsProcessing] = useState(false); const handlePayNow = async () => { setIsProcessing(true); // TODO: Integrate with payment gateway setTimeout(() => setIsProcessing(false), 2000); }; return ( <> {/* Page Title */}

Payments

Manage Your billing cycles , upgrade your plan , or boost individual listings

{/* Checkout Card */}
{/* Left Side - Order Summary */}
{/* Order Summary Header */}

Order Summary

{/* Divider */}
{/* Annual Subscription Badge */}
Annual Subscription
{/* Plan Name */}

Professional Premium Plan

{/* Plan Description */}

Empower your real estate business with full access to our unified solutions platform. Designed specifically for professional Lenders & Agents seeking seamless transaction management for 12 months.

{/* Features */}
{CHECKOUT_FEATURES.map((feature) => (
{feature.label}
))}
{/* Right Side - Payment Details */}
{/* Trust Badges */}
Verified Verified User
Secure Secure Checkout
{/* Line Items */}
Annual Subscription $499 .00
One-Time Setup Fee Free
Tax $00 .00
{/* Divider */}
{/* Total */}
Total Amount
$499 / Year
Billed Annually
{/* Divider */}
{/* Security Notice */}
Notice

You will be redirected to our secure payment gateway after clicking "Pay Now" to enter your payment details safely.

{/* Pay Now Button */}
); }