From c013f981f415b8a5e5d2099aa43dc9db23430ba5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 08:11:14 +0000 Subject: [PATCH] Update src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 144 ++++++++++++-------------------------- 1 file changed, 46 insertions(+), 98 deletions(-) diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 7ed5242..54d65f0 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -27,62 +27,44 @@ export default function LandingPage() {
{}} items={[ { - id: "1", - name: "Enhanced GTM Script Package", - price: "$99.00", - quantity: 1, - imageSrc: "http://img.b2bpic.net/free-photo/shipping-logistic-delivery-freight-cargo-concept_53876-127475.jpg?_wi=2", - imageAlt: "GTM script icon minimalist", + id: "1", name: "Enhanced GTM Script Package", price: "$99.00", quantity: 1, + imageSrc: "http://img.b2bpic.net/free-photo/shipping-logistic-delivery-freight-cargo-concept_53876-127475.jpg", imageAlt: "GTM script icon minimalist" }, { - id: "2", - name: "Server-Side Tracking Solution", - price: "$149.00", - quantity: 1, - imageSrc: "http://img.b2bpic.net/free-photo/server-hub-engineering-team-interprets-ai-generated-data-analytics-graphs_482257-126197.jpg?_wi=2", - imageAlt: "server-side tracking icon minimalist", - }, + id: "2", name: "Server-Side Tracking Solution", price: "$149.00", quantity: 1, + imageSrc: "http://img.b2bpic.net/free-photo/server-hub-engineering-team-interprets-ai-generated-data-analytics-graphs_482257-126197.jpg", imageAlt: "server-side tracking icon minimalist" + } ]} total="$248.00" buttons={[ { - text: "Continue to Payment", - href: "/payment", - }, + text: "Continue to Payment", href: "/payment" + } ]} title="Your Order Summary" /> @@ -95,35 +77,21 @@ export default function LandingPage() { description="Please provide your details for secure processing and delivery of your digital products." inputs={[ { - name: "firstName", - type: "text", - placeholder: "First Name", - required: true, + name: "firstName", type: "text", placeholder: "First Name", required: true }, { - name: "lastName", - type: "text", - placeholder: "Last Name", - required: true, + name: "lastName", type: "text", placeholder: "Last Name", required: true }, { - name: "email", - type: "email", - placeholder: "Email Address", - required: true, + name: "email", type: "email", placeholder: "Email Address", required: true }, { - name: "company", - type: "text", - placeholder: "Company (Optional)", - required: false, - }, + name: "company", type: "text", placeholder: "Company (Optional)", required: false + } ]} textarea={{ - name: "notes", - placeholder: "Any special instructions?", - rows: 4, - required: false, + name: "notes", placeholder: "Any special instructions?", rows: 4, + required: false }} imageSrc="http://img.b2bpic.net/free-photo/payment-terminal-shows-successful-operation-confirmation-mark-appears-screen_169016-73097.jpg" imageAlt="Payment terminal shows a successful operation a confirmation mark appears on the screen" @@ -137,25 +105,17 @@ export default function LandingPage() { useInvertedBackground={false} faqs={[ { - id: "1", - title: "How do I receive my digital products?", - content: "Upon successful payment, you will receive an email with secure download links and detailed setup instructions for your purchased GTM scripts and tracking solutions. Access is instant!", + id: "1", title: "How do I receive my digital products?", content: "Upon successful payment, you will receive an email with secure download links and detailed setup instructions for your purchased GTM scripts and tracking solutions. Access is instant!" }, { - id: "2", - title: "What payment methods do you accept?", - content: "We accept all major credit cards including Visa, Mastercard, American Express, and Discover, as well as PayPal for your convenience and security.", + id: "2", title: "What payment methods do you accept?", content: "We accept all major credit cards including Visa, Mastercard, American Express, and Discover, as well as PayPal for your convenience and security." }, { - id: "3", - title: "Do you offer refunds or exchanges?", - content: "Due to the digital nature of our products, all sales are final. We encourage you to carefully review product descriptions and our FAQ before making a purchase. Our support team is happy to answer any pre-purchase questions.", + id: "3", title: "Do you offer refunds or exchanges?", content: "Due to the digital nature of our products, all sales are final. We encourage you to carefully review product descriptions and our FAQ before making a purchase. Our support team is happy to answer any pre-purchase questions." }, { - id: "4", - title: "Is my payment information secure?", - content: "Yes, absolutely. We use industry-standard encryption and secure payment gateways to protect your personal and payment information. Your data security is our top priority.", - }, + id: "4", title: "Is my payment information secure?", content: "Yes, absolutely. We use industry-standard encryption and secure payment gateways to protect your personal and payment information. Your data security is our top priority." + } ]} title="Frequently Asked Questions" description="Answers to common questions about our products, payments, and delivery process." @@ -167,56 +127,44 @@ export default function LandingPage() {