diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index a0f3325..f224995 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -26,35 +26,24 @@ export default function LandingPage() { @@ -67,46 +56,25 @@ export default function LandingPage() { description="Enter your shipping and payment details to finalize your ShopFusion order. Secure and fast checkout process." inputs={[ { - name: "fullName", - type: "text", - placeholder: "Full Name", - required: true, + name: "fullName", type: "text", placeholder: "Full Name", required: true, }, { - name: "address", - type: "text", - placeholder: "Shipping Address", - required: true, + name: "address", type: "text", placeholder: "Shipping Address", required: true, }, { - name: "city", - type: "text", - placeholder: "City", - required: true, + name: "city", type: "text", placeholder: "City", required: true, }, { - name: "zipCode", - type: "text", - placeholder: "Zip Code", - required: true, + name: "zipCode", type: "text", placeholder: "Zip Code", required: true, }, { - name: "cardNumber", - type: "text", - placeholder: "Card Number", - required: true, + name: "cardNumber", type: "text", placeholder: "Card Number", required: true, }, { - name: "expiryDate", - type: "text", - placeholder: "MM/YY", - required: true, + name: "expiryDate", type: "text", placeholder: "MM/YY", required: true, }, { - name: "cvv", - type: "text", - placeholder: "CVV", - required: true, + name: "cvv", type: "text", placeholder: "CVV", required: true, }, ]} imageSrc="http://img.b2bpic.net/free-vector/cyber-security-web-template_23-2148904885.jpg?_wi=2" @@ -123,20 +91,14 @@ export default function LandingPage() { useInvertedBackground={false} faqs={[ { - id: "1", - title: "Is my payment information secure?", - content: "Yes, ShopFusion uses industry-standard encryption and security protocols to protect your payment details. Your data is safe with us.", + id: "1", title: "Is my payment information secure?", content: "Yes, ShopFusion uses industry-standard encryption and security protocols to protect your payment details. Your data is safe with us." }, { - id: "2", - title: "What payment methods do you accept?", - content: "We accept major credit cards (Visa, Mastercard, Amex), PayPal, and other digital payment options. You can see the full list at checkout.", + id: "2", title: "What payment methods do you accept?", content: "We accept major credit cards (Visa, Mastercard, Amex), PayPal, and other digital payment options. You can see the full list at checkout." }, { - id: "3", - title: "Can I change my shipping address after placing an order?", - content: "Changes to shipping addresses are possible only if your order has not yet been processed. Please contact customer support immediately for assistance.", - }, + id: "3", title: "Can I change my shipping address after placing an order?", content: "Changes to shipping addresses are possible only if your order has not yet been processed. Please contact customer support immediately for assistance." + } ]} title="Checkout & Payment Help" description="Quick answers to common questions about the checkout process and payment options." @@ -148,56 +110,44 @@ export default function LandingPage() {