Skip to content

Commit

Permalink
add feedback form (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
waalbert authored Jan 26, 2025
1 parent 685d786 commit d621da3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
11 changes: 6 additions & 5 deletions apps/site/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ const nextConfig = {
destination: "https://irvinehacks-2025.devpost.com/",
permanent: true,
},
// {
// source: "/feedback",
// destination: "https://forms.gle/c154z45wRx7ARnrE9",
// permanent: true,
// },
{
source: "/feedback",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSfFP7D0WMwUn0cSnNCU6W1OQtv6qa10SdjL2FkigZHkY92voQ/viewform",
permanent: true,
},
];
},
};
Expand Down
8 changes: 8 additions & 0 deletions apps/site/src/lib/components/Navbar/BaseNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ export default function BaseNavbar({ children }: PropsWithChildren) {
Devpost
</NavLinkItem>

<NavLinkItem
href="/feedback"
target="_blank"
rel="noopener noreferrer"
>
Feedback Form
</NavLinkItem>

{children}
</NavMenu.List>
</div>
Expand Down

0 comments on commit d621da3

Please sign in to comment.