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." }]} /> 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." }]} /> 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." }]} />