Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ad7a9b3eca | |||
| 33b988bf23 | |||
| 6db5d03798 |
@@ -26,17 +26,15 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Shop",
|
name: "Shop", id: "/products"
|
||||||
id: "/",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Checkout",
|
name: "Checkout", id: "/checkout"
|
||||||
id: "/checkout",
|
}
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Dune Dragon"
|
brandName="Dune Dragon"
|
||||||
button={{
|
button={{
|
||||||
text: "Cart",
|
text: "Cart"
|
||||||
}}
|
}}
|
||||||
animateOnLoad={false}
|
animateOnLoad={false}
|
||||||
/>
|
/>
|
||||||
@@ -46,7 +44,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"
|
||||||
}}
|
}}
|
||||||
tag="Checkout"
|
tag="Checkout"
|
||||||
title="Finalize Your Order"
|
title="Finalize Your Order"
|
||||||
@@ -63,20 +61,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "faq1",
|
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."
|
||||||
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",
|
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."
|
||||||
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",
|
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."
|
||||||
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"
|
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"
|
imageAlt="Customer service representative helping a client"
|
||||||
@@ -95,48 +87,38 @@ export default function LandingPage() {
|
|||||||
logoText="Dune Dragon"
|
logoText="Dune Dragon"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Shop",
|
title: "Shop", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "AirPods",
|
label: "AirPods", href: "/products"
|
||||||
href: "#products",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Apple Watch",
|
label: "Apple Watch", href: "/products"
|
||||||
href: "#products",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Accessories",
|
label: "Accessories", href: "/products"
|
||||||
href: "#products",
|
}
|
||||||
},
|
]
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#about"
|
||||||
href: "#about",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/checkout"
|
||||||
href: "/checkout",
|
}
|
||||||
},
|
]
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"
|
||||||
href: "#",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"
|
||||||
href: "#",
|
}
|
||||||
},
|
]
|
||||||
],
|
}
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2024 Dune Dragon. All rights reserved."
|
copyrightText="© 2024 Dune Dragon. All rights reserved."
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user