diff --git a/com-dict-client/src/components/Faqs/index.js b/com-dict-client/src/components/Faqs/index.js
new file mode 100644
index 0000000..eb405c0
--- /dev/null
+++ b/com-dict-client/src/components/Faqs/index.js
@@ -0,0 +1,84 @@
+import React, { useState } from "react";
+import { Row, Col} from "antd";
+const faqs = [
+ {
+ question: "What is a Community Dictionary?",
+ answer:
+ "A Community Dictionary is a web application where users can submit and search for definitions of words or phrases.",
+ },
+ {
+ question:
+ "How do I create an account on the Community Dictionary web application?",
+ answer:
+ "To create an account on the Community Dictionary, click on the 'Sign Up' button and fill out the registration form.",
+ },
+ {
+ question: "How do I submit a new entry to the Community Dictionary?",
+ answer:
+ "To submit a new entry to the Community Dictionary, click on the 'Plus' icon and fill out the entry form.",
+ },
+ {
+ question:
+ "How can I search for a specific entry on the Community Dictionary?",
+ answer:
+ "To search for a specific entry on the Community Dictionary, use the search bar on the homepage and enter the word or phrase you're looking for.",
+ },
+ {
+ question:
+ "How can I report inaccurate or inappropriate entries on the Community Dictionary?",
+ answer:
+ "To report inaccurate or inappropriate entries on the Community Dictionary, click on the 'Report' button of that particular word and fill out the report form.",
+ },
+ {
+ question: "Is the Community Dictionary available in multiple languages?",
+ answer:
+ "Yes, Communution Dictionary is multilingual Dictionary web application.",
+ },
+ {
+ question: "Can I access the Community Dictionary on my mobile device?",
+ answer:
+ "Yes, the Community Dictionary is accessible on most mobile devices via a web browser.",
+ },
+];
+
+const FaqsSection = () => {
+ const [activeIndex, setActiveIndex] = useState(-1);
+
+ const handleClick = (index) => {
+ if (activeIndex === index) {
+ setActiveIndex(-1);
+ } else {
+ setActiveIndex(index);
+ }
+ };
+
+ return (
+