Skip to content

Commit

Permalink
added faqs page
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruv8433 committed May 30, 2024
1 parent 1064416 commit 4dbd926
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
} from "./pages";
import { useSelector } from "react-redux";
import FAQs from "./components/FAQs.jsx";
import ApplyForm from "./pages/ApplyForm";
// import ApplyForm from "./pages/ApplyForm";
import SectionFirst from "./components/Home/SectionFirst";
import SectionSecond from "./components/Home/SectionSecond";
import SectionThird from "./components/Home/SectionThird";
Expand Down Expand Up @@ -60,7 +60,7 @@ function App() {
<Route path="/find-jobs" element={<FindJobs />} />
<Route path="/companies" element={<Companies />} />
<Route path="/FAQ" element={<FAQs />} />
<Route path="/apply/:id/:title" element={<ApplyForm />} />
{/* <Route path="/apply/:id/:title" element={<ApplyForm />} /> */}
<Route path="/about-us" element={<About />} />
<Route path="/user-auth" element={<AuthPage />} />
<Route path="/job-detail/:id" element={<JobDetail />} />
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Footer = () => {
{links.map((link, index) => (
<Link
key={link + index}
to="/"
to={`/${link}`}
className="text-gray-300 text-sm hover:text-white "
>
{link}
Expand Down

0 comments on commit 4dbd926

Please sign in to comment.