Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -27,62 +27,44 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
name: "Products", id: "/products"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "/testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "/testimonials"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
name: "FAQ", id: "/faq"}
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/cyber-monday-labels_23-2147527865.jpg"
|
||||
logoAlt="Digital Tracking Shop Logo"
|
||||
brandName="Digital Tracking Shop"
|
||||
button={{
|
||||
text: "Buy Now",
|
||||
href: "/checkout",
|
||||
text: "Buy Now", href: "/checkout"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cart-summary" data-section="cart-summary">
|
||||
<ProductCart
|
||||
isOpen={true}
|
||||
onClose={() => {}}
|
||||
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() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Products",
|
||||
items: [
|
||||
title: "Products", items: [
|
||||
{
|
||||
label: "GTM Scripts",
|
||||
href: "/products/gtm-scripts",
|
||||
label: "GTM Scripts", href: "/products/gtm-scripts"
|
||||
},
|
||||
{
|
||||
label: "Server-Side Tracking",
|
||||
href: "/products/server-side",
|
||||
label: "Server-Side Tracking", href: "/products/server-side"
|
||||
},
|
||||
{
|
||||
label: "Audit Templates",
|
||||
href: "/products/audit-templates",
|
||||
},
|
||||
],
|
||||
label: "Audit Templates", href: "/products/audit-templates"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
label: "About Us", href: "/about"
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
label: "Contact", href: "/contact"
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "/terms",
|
||||
},
|
||||
],
|
||||
label: "Terms of Service", href: "/terms"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
label: "FAQ", href: "/faq"
|
||||
},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
label: "Blog", href: "/blog"
|
||||
},
|
||||
{
|
||||
label: "Guides",
|
||||
href: "/guides",
|
||||
},
|
||||
],
|
||||
},
|
||||
label: "Guides", href: "/guides"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Accurate Tracking, Ready to Install in Minutes"
|
||||
copyrightText="© 2024 Digital Tracking Shop. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user