Skip to content

Commit ade6e77

Browse files
update faq content to reflect new updates
1 parent 7f53d60 commit ade6e77

1 file changed

Lines changed: 43 additions & 4 deletions

File tree

src/components/screens/Faq.tsx

Lines changed: 43 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
"use client";
22

33
import React from "react";
4+
import Link from 'next/link';
5+
46
import { useState } from "react";
57

68
function Faq() {
@@ -23,22 +25,59 @@ const faqs = [
2325
{
2426
question: "How can I upload an exam paper to the website?",
2527
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+
</>
2742
},
2843
{
2944
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.",
3146
},
3247
{
3348
question: "How do I reach out for support or assistance?",
3449
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+
</>,
3663
},
3764
{
3865
question:
3966
"What should I do if I can’t find a specific exam paper on the website?",
4067
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+
</>,
4281
},
4382
{
4483
question: "Are uploaded papers immediately visible on the website?",

0 commit comments

Comments
 (0)