diff --git a/faq/page.tsx b/faq/page.tsx new file mode 100644 index 0000000..a43d2e3 --- /dev/null +++ b/faq/page.tsx @@ -0,0 +1,63 @@ +export default function FAQPage() { + const faqs = [ + { + question: "What is Parampara?", + answer: + "Parampara is a platform that reconnects the global Indian diaspora with their cultural roots through live, interactive sessions with verified women instructors from India.", + }, + { + question: "How do I book a session?", + answer: + "Browse our instructor marketplace, choose an instructor, and click 'Book a Session' on their profile page.", + }, + { + question: "How do I become an instructor?", + answer: + "Click on 'Become an Instructor' and fill out the registration form. Our team will verify your profile and get you onboarded.", + }, + { + question: "What payment methods are supported?", + answer: + "We plan to support Razorpay and Stripe for secure payments. Stay tuned for updates!", + }, + { + question: "Is the platform available in multiple languages?", + answer: + "Multi-language support is on our roadmap. Currently the platform is available in English.", + }, + ]; + + return ( +
+
+

+ Frequently Asked Questions +

+

+ Everything you need to know about Parampara. +

+
+ {faqs.map((faq, index) => ( +
+

+ {faq.question} +

+

{faq.answer}

+
+ ))} +
+
+ + href="/" + className="inline-block bg-amber-600 text-white px-6 py-3 rounded-lg hover:bg-amber-700 transition" + > + ← Back to Home + +
+
+
+ ); +}