From 382b8f18f0803ec6614ad4cc4be3e94395166006 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:40 +0000 Subject: [PATCH] Update app/faq/page.tsx --- app/faq/page.tsx | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 app/faq/page.tsx diff --git a/app/faq/page.tsx b/app/faq/page.tsx new file mode 100644 index 0000000..c3e4d9d --- /dev/null +++ b/app/faq/page.tsx @@ -0,0 +1,48 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Footer } from "@/components/footer"; + +export default function FAQPage() { + const faqs = [ + { + question: "What is the estimated delivery time?", + answer: "Delivery usually takes 3-5 business days for metro cities and 5-7 business days for other locations across India." + }, + { + question: "How can I track my order?", + answer: "Once your order is shipped, you will receive an email and SMS with the tracking number and a link to track your package." + }, + { + question: "What is your return policy?", + answer: "We offer a 7-day return policy for most items. Products must be in their original packaging and unused condition." + }, + { + question: "Do you offer Cash on Delivery (COD)?", + answer: "Yes, we offer COD for most pincodes in India. You can check availability at the checkout page." + }, + { + question: "Are the products genuine?", + answer: "Absolutely. We source products directly from brands and authorized distributors to ensure 100% authenticity." + } + ]; + + return ( +
+ +
+ Frequently Asked Questions +
+ {faqs.map((faq, index) => ( +
+

{faq.question}

+

{faq.answer}

+
+ ))} +
+
+
+
+ ); +}