From 8e8c6ce6cdb4384d0ce0f7243ef81eaea02b3e78 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 13:49:22 +0000 Subject: [PATCH 1/2] Update src/app/account/page.tsx --- src/app/account/page.tsx | 58 ++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx index 6350ba5..9595bc5 100644 --- a/src/app/account/page.tsx +++ b/src/app/account/page.tsx @@ -8,14 +8,14 @@ import FaqBase from '@/components/sections/faq/FaqBase'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from 'next/link'; -const assetMap: Record<string, { url: string; alt: string }> = { +const assetMap: Record = { "gen-stock-rsv-113": { "url": "http://img.b2bpic.net/free-photo/beautiful-woman-with-curly-hair-posing_23-2148973992.jpg", "alt": "Beautiful woman with curly hair posing" }, "gen-stock-rsv-118": { "url": "http://img.b2bpic.net/free-photo/fashion-portrait-young-businessman-handsome-model-man-dressed-elegant-blue-suit-gray_158538-11101.jpg", "alt": "Fashion portrait of young businessman handsome model man dressed in elegant blue suit on gray" }, "gen-stock-rsv-258": { "url": "http://img.b2bpic.net/free-photo/smiling-young-blonde-call-centre-girl-wearing-headset-sitting-desk-with-work-tools-looking-camera-showing-thumb-up-isolated-green-wall_141793-113773.jpg", "alt": "Smiling young blonde call centre girl wearing headset sitting at desk with work tools looking at camera showing thumb up isolated on green wall" } }; -const getAssetUrl = (id: string) => assetMap[id]?.url || ""; -const getAssetAlt = (id: string) => assetMap[id]?.alt || ""; +const getAssetUrl = (id: string) => assetMap[id]?.url || ""; +const getAssetAlt = (id: string) => assetMap[id]?.alt || ""; export default function AccountPage() { const navItems = [ @@ -33,13 +33,13 @@ export default function AccountPage() { { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" } + { label: "Terms & Conditions", href: "#" } ] } ]; return ( - <ThemeProvider + + - <div id="account-intro" data-section="account-intro"> - <InlineImageSplitTextAbout +
+ +
- <div id="account-features" data-section="account-features"> - <FeatureCardTwentySeven +
+ +
- <div id="account-faqs" data-section="account-faqs"> - <FaqBase - title="Account Help & FAQs" +
+ +
- <div id="footer" data-section="footer"> - <FooterMedia + +
); } -- 2.49.1 From 509fb0b49fe8be4be11e7719d02589904a3ce22e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 13:49:23 +0000 Subject: [PATCH 2/2] Update src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 58 +++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index c7125c5..e1b943d 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -8,12 +8,12 @@ import ContactSplit from '@/components/sections/contact/ContactSplit'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from 'next/link'; -const assetMap: Record<string, { url: string; alt: string }> = { +const assetMap: Record = { "contact-image__2": { "url": "http://img.b2bpic.net/free-photo/businesswoman-using-sign-language-work_23-2148740359.jpg", "alt": "fashion store contact us desk" } }; -const getAssetUrl = (id: string) => assetMap[id]?.url || ""; -const getAssetAlt = (id: string) => assetMap[id]?.alt || ""; +const getAssetUrl = (id: string) => assetMap[id]?.url || ""; +const getAssetAlt = (id: string) => assetMap[id]?.alt || ""; export default function CheckoutPage() { const navItems = [ @@ -31,13 +31,13 @@ export default function CheckoutPage() { { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" } + { label: "Terms & Conditions", href: "#" } ] } ]; return ( - <ThemeProvider + + - <div id="checkout-intro" data-section="checkout-intro"> - <InlineImageSplitTextAbout - heading={[{ type: "text", content: "Secure & Seamless Checkout" }]} +
+ +
- <div id="checkout-faqs" data-section="checkout-faqs"> - <FaqBase +
+ +
- <div id="checkout-contact" data-section="checkout-contact"> - <ContactSplit +
+ +
- <div id="footer" data-section="footer"> - <FooterMedia + +
); } -- 2.49.1