Skip to content

Commit

Permalink
feat: add feedback form (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
samderanova authored Jan 28, 2024
1 parent b536376 commit 55097d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/site/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ const nextConfig = {
destination: "https://irvinehacks-2024.devpost.com",
permanent: true,
},
{
source: "/feedback",
destination: "https://forms.gle/c154z45wRx7ARnrE9",
permanent: true,
},
];
},
};
Expand Down
7 changes: 7 additions & 0 deletions apps/site/src/lib/components/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ function Navbar({ identity }: NavbarProps) {
>
Devpost
</NavLinkItem>
<NavLinkItem
href="/feedback"
target="_blank"
rel="noopener noreferrer"
>
Feedback
</NavLinkItem>
{!status && !deadlinePassed && (
<NavLinkItem href="/apply">Apply</NavLinkItem>
)}
Expand Down

0 comments on commit 55097d6

Please sign in to comment.