Skip to content

Commit 27164ff

Browse files
committed
fix: #305
1 parent cbdc596 commit 27164ff

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/components/screens/Faq.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import React from "react";
44
import { useState } from "react";
55

66
function Faq() {
7-
const faqs = [
7+
const faqs = [
88
{
99
question: "How do you source exam papers for the website?",
1010
answer:
@@ -27,18 +27,18 @@ function Faq() {
2727
},
2828
{
2929
question: "Do you provide papers for soft skills?",
30-
answer: "lmao",
30+
answer: "Lmao, we actually do have something for you now.",
3131
},
3232
{
3333
question: "How do I reach out for support or assistance?",
3434
answer:
35-
'For any queries or issues, contact our support team via the "Contact Us" section on the website. We’re here to help with all your questions about exam papers and site features.',
35+
'For any queries or issues, you can email us at the address mentioned below. You can also subscribe to our newsletter for the latest updates.',
3636
},
3737
{
3838
question:
3939
"What should I do if I can’t find a specific exam paper on the website?",
4040
answer:
41-
"Our database is regularly updated with both new and older exam papers. If the paper youre looking for isn’t available, you can upload it yourself to share with the community.",
41+
"If the paper you're looking for isn’t available, you can head to our Paper Request section and submit a request by specifying the subject, year, slot, and type of exam.",
4242
},
4343
{
4444
question: "Are uploaded papers immediately visible on the website?",
@@ -47,6 +47,7 @@ function Faq() {
4747
},
4848
];
4949

50+
5051
const [faqActive, setFaqActive] = useState<number | null>(null);
5152

5253
const handleClick = (index: number) => {

0 commit comments

Comments
 (0)