Merge version_1 into main #7
@@ -43,12 +43,12 @@ export default function CartPage() {
|
||||
};
|
||||
|
||||
const emptyCartHeroProps = {
|
||||
logoText: "Your Cart is Empty", description: "Looks like you haven't added anything yet. Start exploring our sun protection essentials to find your perfect match!", buttons: [{ text: "Shop Now", href: "/shop" }],
|
||||
logoText: "Your Cart is Empty", description: "Looks like you haven't added anything yet. Start exploring our sun protection essentials to find your perfect match!", buttons: Array.from([{ text: "Shop Now", href: "/shop" }]),
|
||||
background: { variant: "plain" },
|
||||
mediaAnimation: "none", ariaLabel: "Empty cart message section"} as const;
|
||||
|
||||
const recommendedProductsProps = {
|
||||
title: "You Might Also Like", description: "Explore more of our sun protection essentials to complete your order.", products: [
|
||||
title: "You Might Also Like", description: "Explore more of our sun protection essentials to complete your order.", products: Array.from([
|
||||
{
|
||||
id: "product-pack-50", name: "Sunscreen Swipes 50 Pack", price: "$10.99 - $19.99", variant: "SPF 30, 50, 75", imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-cream-bottle-lemons_23-2148295646.jpg", imageAlt: "Sunscreen Swipes box and a single wipe being used"
|
||||
},
|
||||
@@ -64,7 +64,7 @@ export default function CartPage() {
|
||||
} as const;
|
||||
|
||||
const cartFaqsProps = {
|
||||
sideTitle: "Questions About Your Order?", sideDescription: "Find answers to common questions regarding shipping, returns, and your cart contents.", faqs: [
|
||||
sideTitle: "Questions About Your Order?", sideDescription: "Find answers to common questions regarding shipping, returns, and your cart contents.", faqs: Array.from([
|
||||
{
|
||||
id: "1", title: "What are my shipping options?", content: "We offer several shipping options including standard, expedited, and express. Details and costs are available at checkout."
|
||||
},
|
||||
@@ -83,7 +83,7 @@ export default function CartPage() {
|
||||
} as const;
|
||||
|
||||
const whyShopWithUsProps = {
|
||||
title: "Why Shop with Sunscreen Swipes?", description: "Enjoy peace of mind with every purchase, knowing you're protected by quality and care.", features: [
|
||||
title: "Why Shop with Sunscreen Swipes?", description: "Enjoy peace of mind with every purchase, knowing you're protected by quality and care.", features: Array.from([
|
||||
{
|
||||
id: 1,
|
||||
tag: "Quality", title: "FDA Approved", subtitle: "Trusted quality and safety.", description: "Our wipes meet the highest standards for sun protection and skin safety, giving you peace of mind."
|
||||
|
||||
Reference in New Issue
Block a user