Skip to content

Commit

Permalink
Added our contributor page with animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sawan-Kushwah committed Oct 26, 2024
1 parent d63df0d commit 05fb76a
Show file tree
Hide file tree
Showing 7 changed files with 375 additions and 587 deletions.
17 changes: 14 additions & 3 deletions client/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import Community from "./component/Community";
import MyProfile from "./component/MyProfile";
import ScrollTop from "./component/ScrollTop";
import EditProfile from "./component/EditProfile";
import Contributers from "./component/Contributers";
import Contributors from "./component/Contributors";
import Discussion from "./component/Discussion";
import { useAtom } from "jotai";
import { modeAtom } from "./atom/Atom";
Expand Down Expand Up @@ -205,9 +205,9 @@ function App() {
/>
<Route
exact
path='/contributers'
path='/contributors'
element={
<Contributers
<Contributors
mode={mode}
setProgress={setProgress}
showAlert={showAlert}
Expand Down Expand Up @@ -293,6 +293,17 @@ function App() {
/>
}
/>
<Route
exact
path='/contributors'
element={
<Contributors
mode={mode}
setProgress={setProgress}
showAlert={showAlert}
/>
}
/>
<Route exact path='/verify/:token' element={<VerifyEmail />} />
{/* 404 Route */}
<Route exact path='/*' element={<NotFound />} />
Expand Down
17 changes: 0 additions & 17 deletions client/src/component/Contributers.jsx

This file was deleted.

Loading

0 comments on commit 05fb76a

Please sign in to comment.