You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/screens/Faq.tsx
+43-4Lines changed: 43 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
"use client";
2
2
3
3
importReactfrom"react";
4
+
importLinkfrom'next/link';
5
+
4
6
import{useState}from"react";
5
7
6
8
functionFaq(){
@@ -23,22 +25,59 @@ const faqs = [
23
25
{
24
26
question: "How can I upload an exam paper to the website?",
25
27
answer:
26
-
'To upload a paper, click the "Upload" button located at the top-right corner of the page. You can submit papers in PDF or image formats, especially if they’re not already available on our site.',
28
+
<>
29
+
Click the {" "}
30
+
<Link
31
+
href="https://papers.codechefvit.com/upload"
32
+
target="_blank"
33
+
rel="noopener noreferrer"
34
+
className="dark:text-blue-400 text-red-500"
35
+
style={{textDecoration: "underline"}}
36
+
>
37
+
Upload
38
+
39
+
</Link>
40
+
{" "}button at the top-right corner to submit your exam papers.
41
+
</>
27
42
},
28
43
{
29
44
question: "Do you provide papers for soft skills?",
30
-
answer: "Lmao, we actually do have something for you now.",
45
+
answer: "We currently offer question banks for selected soft skill subjects.",
31
46
},
32
47
{
33
48
question: "How do I reach out for support or assistance?",
34
49
answer:
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.',
50
+
<>
51
+
For any queries or issues, you can mail us at{" "}
52
+
<Link
53
+
href="mailto:codechefvit@gmail.com"
54
+
target="_blank"
55
+
rel="noopener noreferrer"
56
+
className="dark:text-blue-400 text-red-500"
57
+
style={{textDecoration: "underline"}}
58
+
>
59
+
codechefvit@gmail.com
60
+
</Link>
61
+
.
62
+
</>,
36
63
},
37
64
{
38
65
question:
39
66
"What should I do if I can’t find a specific exam paper on the website?",
40
67
answer:
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.",
68
+
<>
69
+
If the paper you're looking for isn’t available, you can{" "}
70
+
<Link
71
+
href="https://papers.codechefvit.com/request"
72
+
target="_blank"
73
+
rel="noopener noreferrer"
74
+
className="dark:text-blue-400 text-red-500"
75
+
style={{textDecoration: "underline"}}
76
+
>
77
+
submit a request
78
+
</Link>
79
+
.
80
+
</>,
42
81
},
43
82
{
44
83
question: "Are uploaded papers immediately visible on the website?",
0 commit comments