Skip to content

Commit

Permalink
add feedback form
Browse files Browse the repository at this point in the history
  • Loading branch information
waalbert committed May 26, 2024
1 parent c96be0c commit 975cb7b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,20 @@ const App = () => (
<Route path="/schedule" element={<Schedule />} />
<Route path="/resources" element={<Resources />} />
<Route path="/workshops" element={<Workshops />} />
<Route path='/devpost' element={<Redirect url="https://venushacks-2024.devpost.com/" />} />
<Route
path="/devpost"
element={<Redirect url="https://venushacks-2024.devpost.com/" />}
/>
{/* <Route path='/hackers-choice' element={<Redirect url="https://docs.google.com/forms/d/e/1FAIpQLSdpBIi6cxLu9m_b8qQoA8GfLMMJ_cIV7HuVbIjH7nHtPQljGg/viewform" />} /> */}
{/* <Route path='/midway' element={<Redirect url="https://docs.google.com/forms/d/e/1FAIpQLSdObzMrHpTjjcc5DhdXmuX8v485aDhsCqBRxCV3R66316htcg/viewform" />} /> */}
<Route path='/report' element={<Redirect url="https://forms.gle/x9uFYYzJe7pRsZt47" />} />
<Route
path="/report"
element={<Redirect url="https://forms.gle/x9uFYYzJe7pRsZt47" />}
/>
<Route
path="/feedback"
element={<Redirect url="https://forms.gle/CymjHWYq28kVDty68" />}
/>
<Route path="*" element={<NotFound />} />
</Routes>
</BrowserRouter>
Expand Down
1 change: 1 addition & 0 deletions src/app/views/home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const Home = () => {
url="https://docs.google.com/forms/d/e/1FAIpQLSdObzMrHpTjjcc5DhdXmuX8v485aDhsCqBRxCV3R66316htcg/viewform?usp=sharing"
text="Mid-Way Check In"
/>
<VenusButton url="/feedback" text="Feedback Form" />
</div>
<div id="astronaut-animation">
{/* These assets are a background of a div instead of imgs to prevent
Expand Down

0 comments on commit 975cb7b

Please sign in to comment.