diff --git a/user/src/components/Faq.jsx b/user/src/components/Faq.jsx index b6a9816..060735b 100644 --- a/user/src/components/Faq.jsx +++ b/user/src/components/Faq.jsx @@ -39,7 +39,7 @@ const faqs = [ { question: "What documents do I need to apply?", answer: - "The documents depend on the scheme you’re applying for. Commonly required documents include: Aadhaar Card, Proof of residence, Income certificate, Caste certificate (if applicable), Bank account details." + "The documents depend on the scheme you're applying for. Commonly required documents include: Aadhaar Card, Proof of residence, Income certificate, Caste certificate (if applicable), Bank account details." }, { question: "Is SaralSeva available in regional languages?", @@ -59,7 +59,7 @@ const faqs = [ { question: "How is my personal data protected?", answer: - "SaralSeva follows the Government of India’s data protection and privacy guidelines. Your personal information is encrypted and used only for processing your scheme applications." + "SaralSeva follows the Government of India's data protection and privacy guidelines. Your personal information is encrypted and used only for processing your scheme applications." } ]; @@ -71,9 +71,9 @@ export default function Faq() { }; return ( -
+
{/* Header */} -
+

FAQs - SaralSeva

@@ -81,7 +81,7 @@ export default function Faq() { {/* Main FAQ Section */}
-

+

Frequently Asked Questions

@@ -89,15 +89,15 @@ export default function Faq() { {faqs.map((faq, index) => (
{openIndex === index && ( -
{faq.answer}
+
+ {faq.answer} +
)}
))} @@ -120,4 +122,4 @@ export default function Faq() {
); -} +} \ No newline at end of file