4 Commits

Author SHA1 Message Date
2024356016 Merge version_2 into main
Merge version_2 into main
2026-05-31 02:58:07 +00:00
ad7a9b3eca Update src/app/checkout/page.tsx 2026-05-31 02:58:05 +00:00
33b988bf23 Merge version_1 into main
Merge version_1 into main
2026-05-31 02:54:55 +00:00
6db5d03798 Merge version_1 into main
Merge version_1 into main
2026-05-31 02:54:02 +00:00

View File

@@ -26,17 +26,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Shop",
id: "/",
name: "Shop", id: "/products"
},
{
name: "Checkout",
id: "/checkout",
},
name: "Checkout", id: "/checkout"
}
]}
brandName="Dune Dragon"
button={{
text: "Cart",
text: "Cart"
}}
animateOnLoad={false}
/>
@@ -46,7 +44,7 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
variant: "plain"
}}
tag="Checkout"
title="Finalize Your Order"
@@ -63,20 +61,14 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "faq1",
title: "What are your shipping options?",
content: "We offer standard and expedited shipping worldwide. Shipping costs and delivery times vary based on your location and chosen method.",
id: "faq1", title: "What are your shipping options?", content: "We offer standard and expedited shipping worldwide. Shipping costs and delivery times vary based on your location and chosen method."
},
{
id: "faq2",
title: "What is your return policy?",
content: "You can return most items within 30 days of purchase in their original condition. Please see our full return policy for details.",
id: "faq2", title: "What is your return policy?", content: "You can return most items within 30 days of purchase in their original condition. Please see our full return policy for details."
},
{
id: "faq3",
title: "Which payment methods do you accept?",
content: "We accept major credit cards (Visa, MasterCard, American Express), PayPal, and Apple Pay for secure and convenient transactions.",
},
id: "faq3", title: "Which payment methods do you accept?", content: "We accept major credit cards (Visa, MasterCard, American Express), PayPal, and Apple Pay for secure and convenient transactions."
}
]}
imageSrc="http://img.b2bpic.net/free-photo/call-center-worker-arriving-work-using-artificial-intelligence-laptop_482257-126041.jpg"
imageAlt="Customer service representative helping a client"
@@ -95,48 +87,38 @@ export default function LandingPage() {
logoText="Dune Dragon"
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "AirPods",
href: "#products",
label: "AirPods", href: "/products"
},
{
label: "Apple Watch",
href: "#products",
label: "Apple Watch", href: "/products"
},
{
label: "Accessories",
href: "#products",
},
],
label: "Accessories", href: "/products"
}
]
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
label: "About Us", href: "#about"
},
{
label: "Contact",
href: "/checkout",
},
],
label: "Contact", href: "/checkout"
}
]
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
label: "Privacy Policy", href: "#"
},
{
label: "Terms of Service",
href: "#",
},
],
},
label: "Terms of Service", href: "#"
}
]
}
]}
copyrightText="© 2024 Dune Dragon. All rights reserved."
/>
@@ -144,4 +126,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}