From 005b9dabe390e796b5d8d2e4b86b429ccc86c0c0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 22:16:22 +0000 Subject: [PATCH] Update src/app/cart/page.tsx --- src/app/cart/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 5f17fe3..3efce88 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -12,7 +12,7 @@ import FooterBase from '@/components/sections/footer/FooterBase'; export default function CartPage() { const pageTheme = { defaultButtonVariant: "hover-bubble", defaultTextAnimation: "background-highlight", borderRadius: "pill", contentWidth: "medium", sizing: "mediumLargeSizeMediumTitles", background: "none", cardStyle: "solid", primaryButtonStyle: "double-inset", secondaryButtonStyle: "layered", headingFontWeight: "bold" - }; + } as const; const generatedPages = [ { route: "/cart", title: "Your Cart" } @@ -45,23 +45,23 @@ 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" }], background: { variant: "plain" }, - mediaAnimation: "none", ariaLabel: "Empty cart message section"}; + 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: [ { - 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?_wi=7", imageAlt: "Sunscreen Swipes box and a single wipe being used" + 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" }, { - id: "product-pack-25", name: "Sunscreen Swipes 25 Pack", price: "$7.99 - $15.99", variant: "SPF 30, 50, 75", imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-cream-bottle-lemons_23-2148295646.jpg?_wi=8", imageAlt: "Sunscreen Swipes box and a single wipe being used" + id: "product-pack-25", name: "Sunscreen Swipes 25 Pack", price: "$7.99 - $15.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" }, { - id: "product-travel-kit", name: "Travel Swipes Kit", price: "$12.99", variant: "Mixed SPF", imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-cream-bottle-lemons_23-2148295646.jpg?_wi=9", imageAlt: "Sunscreen Swipes box and a single wipe being used" + id: "product-travel-kit", name: "Travel Swipes Kit", price: "$12.99", variant: "Mixed SPF", 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" } ], gridVariant: "three-columns-all-equal-width", animationType: "slide-up", textboxLayout: "default", useInvertedBackground: false, ariaLabel: "Recommended products for your cart" - }; + } as const; const cartFaqsProps = { sideTitle: "Questions About Your Order?", sideDescription: "Find answers to common questions regarding shipping, returns, and your cart contents.", faqs: [ @@ -80,7 +80,7 @@ export default function CartPage() { ], faqsAnimation: "slide-up", textPosition: "left", useInvertedBackground: false, ariaLabel: "FAQs about your cart and order" - }; + } 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: [ @@ -99,7 +99,7 @@ export default function CartPage() { ], textboxLayout: "default", useInvertedBackground: false, ariaLabel: "Reasons to shop with Sunscreen Swipes" - }; + } as const; return (