diff --git a/client/package-lock.json b/client/package-lock.json index 65e9880..0246cf8 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -2045,6 +2045,7 @@ }, "node_modules/@types/react-dom": { "version": "18.3.1", + "dev": true, "license": "MIT", "dependencies": { "@types/react": "*" diff --git a/client/src/component/AddProject.jsx b/client/src/component/AddProject.jsx index ca9e6fc..1deeb57 100644 --- a/client/src/component/AddProject.jsx +++ b/client/src/component/AddProject.jsx @@ -133,4 +133,4 @@ AddProject.propTypes = { mode: PropTypes.string, }; -export default AddProject; +export default AddProject; \ No newline at end of file diff --git a/client/src/component/Faq.jsx b/client/src/component/Faq.jsx index 541d836..ae2e048 100644 --- a/client/src/component/Faq.jsx +++ b/client/src/component/Faq.jsx @@ -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 support@example.com.", + answer: "You can reach out to support through the 'Contact Us' page or by emailing support@example.com.", }, ]; + export default FAQ; diff --git a/client/src/component/Navbar.jsx b/client/src/component/Navbar.jsx index 7293845..c414181 100644 --- a/client/src/component/Navbar.jsx +++ b/client/src/component/Navbar.jsx @@ -245,7 +245,7 @@ function Navbar(props) {