From 57f5857b867dc5ce99a281c17bb2c18e4a7236dc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 15:16:03 +0000 Subject: [PATCH 1/3] Update src/app/buy/page.tsx --- src/app/buy/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/buy/page.tsx b/src/app/buy/page.tsx index 0a9a68e..9cb86d0 100644 --- a/src/app/buy/page.tsx +++ b/src/app/buy/page.tsx @@ -51,7 +51,7 @@ export default function LandingPage() { useInvertedBackground={false} sideTitle="Buying FAQ" faqsAnimation="slide-up" - faqs={[{ question: "Do you offer warranty?", answer: "Yes, we provide 1-year warranty on all refurbished laptops." }, { question: "Is shipping free?", answer: "Shipping is free across India for all orders." }]} + faqs={[{ id: "1", title: "Do you offer warranty?", content: "Yes, we provide 1-year warranty on all refurbished laptops." }, { id: "2", title: "Is shipping free?", content: "Shipping is free across India for all orders." }]} /> -- 2.49.1 From 9b0c1cacab6eef40e7dfcc27ce67383f173d0490 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 15:16:04 +0000 Subject: [PATCH 2/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fd16023..6db6457 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -46,7 +46,7 @@ export default function LandingPage() { useInvertedBackground={false} sideTitle="Support Help" faqsAnimation="slide-up" - faqs={[{ question: "Working hours?", answer: "We are open 10AM to 8PM daily." }, { question: "Location?", answer: "Located in the heart of Kanpur." }]} + faqs={[{ id: "1", title: "Working hours?", content: "We are open 10AM to 8PM daily." }, { id: "2", title: "Location?", content: "Located in the heart of Kanpur." }]} /> -- 2.49.1 From 1e917032d26dfd911a598373dd6e9bc877717f07 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 15:16:04 +0000 Subject: [PATCH 3/3] Update src/app/sell/page.tsx --- src/app/sell/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/sell/page.tsx b/src/app/sell/page.tsx index d65f271..bfbf905 100644 --- a/src/app/sell/page.tsx +++ b/src/app/sell/page.tsx @@ -46,7 +46,7 @@ export default function LandingPage() { useInvertedBackground={false} sideTitle="Selling Process" faqsAnimation="slide-up" - faqs={[{ question: "How to sell?", answer: "Contact us via WhatsApp with your laptop details." }, { question: "Do you offer pick up?", answer: "Yes, we provide free pickup service in Kanpur." }]} + faqs={[{ id: "1", title: "How to sell?", content: "Contact us via WhatsApp with your laptop details." }, { id: "2", title: "Do you offer pick up?", content: "Yes, we provide free pickup service in Kanpur." }]} /> -- 2.49.1