diff --git a/client/package-lock.json b/client/package-lock.json
index 98d44f3..39577ff 100644
--- a/client/package-lock.json
+++ b/client/package-lock.json
@@ -23,7 +23,6 @@
"react-icons": "^4.10.1",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.1",
- "slugify": "^1.6.6",
"styled-components": "^6.1.11"
},
"devDependencies": {
@@ -4873,14 +4872,6 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/slugify": {
- "version": "1.6.6",
- "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz",
- "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==",
- "engines": {
- "node": ">=8.0.0"
- }
- },
"node_modules/source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
diff --git a/client/package.json b/client/package.json
index 9aaef67..e484467 100644
--- a/client/package.json
+++ b/client/package.json
@@ -25,7 +25,6 @@
"react-icons": "^4.10.1",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.1",
- "slugify": "^1.6.6",
"styled-components": "^6.1.11"
},
"devDependencies": {
diff --git a/client/src/App.jsx b/client/src/App.jsx
index 16205bc..9806b72 100644
--- a/client/src/App.jsx
+++ b/client/src/App.jsx
@@ -10,8 +10,7 @@ import {
UserProfile,
} from "./pages";
import { useSelector } from "react-redux";
-import FAQs from "./components/FAQs.jsx";
-// import ApplyForm from "./pages/ApplyForm";
+
import SectionFirst from "./components/Home/SectionFirst";
import SectionSecond from "./components/Home/SectionSecond";
import SectionThird from "./components/Home/SectionThird";
@@ -56,27 +55,9 @@ function App() {
{loading && }
}>
- } />
- } />
- } />
- } />
- {/* } /> */}
- } />
- } />
- } />
- } />
- }
- />
- } />
- } />
+ } path="/about" />
@@ -88,6 +69,20 @@ function App() {
>
}
/>
+ } />
+ } />
+ }
+ />
+ } />
+ } />
+ } />
+ } />
} />
} />
diff --git a/client/src/components/FAQs.jsx b/client/src/components/FAQs.jsx
deleted file mode 100644
index 5ae7f14..0000000
--- a/client/src/components/FAQs.jsx
+++ /dev/null
@@ -1,76 +0,0 @@
-import React, { useState } from 'react';
-const faqsData = [
- {
- question: "How do I create an account?",
- answer: "To create an account, click on the 'Sign Up' button at the top right corner and fill in the required details."
- },
- {
- question: "How do I reset my password?",
- answer: "Click on the 'Forgot Password' link on the login page and follow the instructions to reset your password."
- },
- {
- question: "How do I search for jobs?",
- answer: "Use the search bar on the homepage to enter keywords, job titles, or company names. You can also use filters to narrow down your search."
- },
- {
- question: "How can I apply for a job?",
- answer: "Once you find a job you're interested in, click on the 'Apply' button and follow the instructions to submit your application."
- },
- {
- question: "How do I receive job alerts?",
- answer: "To receive job alerts, go to your account settings and enable job alerts. You can customize the alerts based on your preferences and receive notifications via email."
- },
- {
- question: "How do I contact support?",
- answer: "If you need assistance, you can contact our support team by clicking on the 'Contact Us' link at the bottom of the page. Fill in the contact form and our team will get back to you as soon as possible."
- },
- {
- question: "How do I upload my resume?",
- answer: "To upload your resume, go to your profile page and click on 'Upload Resume'. Select the file from your computer and it will be added to your profile."
- },
- {
- question: "Can I apply for jobs without an account?",
- answer: "No, you need to have an account to apply for jobs on our platform. This helps us to provide a more personalized experience and track your application status."
- },
- {
- question: "What types of jobs are available?",
- answer: "We have a wide range of job listings across various industries, including technology, healthcare, finance, education, and more. Use the search filters to find jobs that match your skills and interests."
- },
- {
- question: "How can I improve my chances of getting hired?",
- answer: "Make sure your profile is complete and up-to-date, including your resume and skills. Tailor your applications to the job descriptions, and consider reaching out to employers directly through the platform's messaging system."
- }
- ];
-
-
-const FAQs = () => {
- const [activeIndex, setActiveIndex] = useState(null);
-
- const handleClick = (index) => {
- setActiveIndex(activeIndex === index ? null : index);
- };
-
- return (
-