Skip to content

Commit

Permalink
pushed a new url
Browse files Browse the repository at this point in the history
  • Loading branch information
ryqndev committed Apr 8, 2024
1 parent d08d36c commit a51269d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
20 changes: 15 additions & 5 deletions src/app/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,28 @@ function App() {
{/* Redirects */}
<Route
path="discord"
element={<Redirect to="https://discord.com/invite/MBVrKe9" />}
element={
<Redirect to="https://discord.com/invite/MBVrKe9" />
}
/>

{/* Leaving this redirect here since that link is posted on our insta */}
<Route path="impact22" element={<Redirect to="/designathon/22" />} />
<Route
path="/ptsignup"
element={<Navigate to="/project-teams/registration" replace={true} />}
element={
<Navigate
to="/project-teams/registration"
replace={true}
/>
}
/>
<Route
path="/pt-registration"
element={<Navigate to="/project-teams/registration" replace={true} />}
element={
<Navigate
to="/project-teams/registration"
replace={true}
/>
}
/>
<Route
path="/project-teams/registration"
Expand Down
6 changes: 4 additions & 2 deletions src/app/pages/Designathons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ const Designathon = () => {
<Route index element={<Home />} />
<Route path="22" element={<Designathon22 />} />
<Route path="impact" element={<Designathon22 />} />
<Route path="impact22" element={<Designathon22 />} />

<Route path="23" element={<Designathon23 />} />
<Route path="you-belong-here" element={<Designathon23 />} />

<Route path="/beta/24" element={<Designathon24 />} />
<Route path="/beta/true-to-you" element={<Designathon24 />} />
<Route path="/24" element={<Designathon24 />} />
<Route path="/truetoyou" element={<Designathon24 />} />
<Route path="/true-to-you" element={<Designathon24 />} />
</Routes>
);
};
Expand Down

0 comments on commit a51269d

Please sign in to comment.