Skip to content

Commit

Permalink
Merge pull request #385 from AyushSharma72/faq
Browse files Browse the repository at this point in the history
Faq visible in dark  mode #385
  • Loading branch information
Anuj3553 authored Nov 6, 2024
2 parents 5181256 + 8211715 commit 804b5c9
Show file tree
Hide file tree
Showing 3 changed files with 339 additions and 84 deletions.
2 changes: 1 addition & 1 deletion client/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ function App() {
<Route exact path='/contactus' element={<ContactUs mode={mode} setProgress={setProgress} showAlert={showAlert} />} />
<Route exact path='/privacypolicy' element={<PrivacyPolicy mode={mode} setProgress={setProgress} showAlert={showAlert} />} />
<Route exact path='/termofuse' element={<TermOfUse mode={mode} setProgress={setProgress} showAlert={showAlert} />} />
<Route exact path='/FAQ' element={<FAQ />} /> {/* Add this line */}
<Route exact path='/FAQ' element={<FAQ mode={mode}/>} /> {/* Add this line */}
<Route exact path='/createBlogPost' element={<CreateBlog />} /> {/* Add this line */}
<Route exact path='/read-more-blog/:id' element={<ReadMoreBlog mode={mode} setProgress={setProgress} showAlert={showAlert} />} /> {/* Add this line */}
<Route exact path='/*' element={<NotFound />} />
Expand Down
Loading

0 comments on commit 804b5c9

Please sign in to comment.