-
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.
Merge pull request #415 from VinayLodhi1712/Uploadproject
Uploadproject UI changes #415
- Loading branch information
Showing
5 changed files
with
121 additions
and
102 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -133,4 +133,4 @@ AddProject.propTypes = { | |
mode: PropTypes.string, | ||
}; | ||
|
||
export default AddProject; | ||
export default AddProject; |
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
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