Skip to content

Commit

Permalink
Refactor FAQ component: rename to FAQs, update import paths, and impl…
Browse files Browse the repository at this point in the history
…ement new styling
  • Loading branch information
Anuj3553 committed Nov 10, 2024
1 parent 57420e9 commit 7b68d12
Show file tree
Hide file tree
Showing 3 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 @@ -18,7 +18,7 @@ import ProjectState from "./context/ProjectState";
import ProfileState from "./context/ProfileState";
import CodeOfConduct from "./component/Footers/Codeofconduct";
import Feedback from "./component/Footers/Feedback";
import Faq from "./component/Faq"
import FAQs from "./component/FAQs"
import ContactUs from "./component/Footers/Contactus";
import PrivacyPolicy from "./component/Footers/Privacypolicy";
import TermOfUse from "./component/Footers/TermOfUse";
Expand Down Expand Up @@ -154,7 +154,7 @@ function App() {
<Route exact path='/uploadProject' element={<UploadProject mode={mode} setProgress={setProgress} showAlert={showAlert} />} />
<Route exact path='/createBlogPost' element={<CreateBlog />} />
<Route exact path='/read-more-blog/:id' element={<ReadMoreBlog mode={mode} setProgress={setProgress} showAlert={showAlert} />} />
<Route exact path='/faq' element={<Faq mode={mode} setProgress={setProgress} showAlert={showAlert} />} />
<Route exact path='/faq' element={<FAQs mode={mode} setProgress={setProgress} showAlert={showAlert} />} />
<Route exact path='/*' element={<NotFound />} />
</Routes>
</Layout>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import { useState } from "react";
import "../css/Faq.css";
import "../css/FAQs.css";
import img1 from "../assets/images/faqs.png";

export default function FAQ() {
Expand Down
File renamed without changes.

0 comments on commit 7b68d12

Please sign in to comment.