-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82f4163
commit fc19d72
Showing
2 changed files
with
118 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// component/FAQ.jsx | ||
import { useState } from "react"; | ||
import "../css/Faq.css"; | ||
import React, { useState } from 'react'; | ||
import './FAQ.css'; // Import the CSS file for styling | ||
|
||
const FAQ = () => { | ||
const [activeIndex, setActiveIndex] = useState(null); | ||
|
@@ -27,29 +27,25 @@ const FAQ = () => { | |
const faqData = [ | ||
{ | ||
question: "What is BitBox?", | ||
answer: | ||
"BitBox is a user-friendly platform that simplifies version control and collaboration for developers.", | ||
answer: "BitBox is a user-friendly platform that simplifies version control and collaboration for developers.", | ||
}, | ||
{ | ||
question: "How does BitBox enhance collaboration?", | ||
answer: | ||
"BitBox offers intuitive tools that enable both solo programmers and large teams to manage projects efficiently.", | ||
answer: "BitBox offers intuitive tools that enable both solo programmers and large teams to manage projects efficiently.", | ||
}, | ||
{ | ||
question: "How do I get started with BitBox?", | ||
answer: | ||
"You can sign up for an account on BitBox and start managing your projects right away.", | ||
answer: "You can sign up for an account on BitBox and start managing your projects right away.", | ||
}, | ||
{ | ||
question: "Is BitBox compatible with modern development workflows?", | ||
answer: | ||
"Yes, BitBox seamlessly integrates with modern development workflows, providing fast and reliable performance.", | ||
answer: "Yes, BitBox seamlessly integrates with modern development workflows, providing fast and reliable performance.", | ||
}, | ||
{ | ||
question: "How can I contact support if I need help?", | ||
answer: | ||
"You can reach out to support through the 'Contact Us' page or by emailing [email protected].", | ||
answer: "You can reach out to support through the 'Contact Us' page or by emailing [email protected].", | ||
}, | ||
]; | ||
|
||
|
||
export default FAQ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters