Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions notes-aid/src/app/feedback/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// src/app/feedback/page.tsx

import React from 'react';

const FeedbackPage = () => {
return (
<div className="p-4 min-h-screen flex flex-col items-center justify-start bg-white">
<h1 className="text-2xl font-bold mb-4 text-center">Submit Feedback / Notes / Feature Request</h1>

<div className="w-full max-w-4xl aspect-[4/3]">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSf1-1avq8IoT-nIpXLacg-5YDz-HM4XyxeJRKrUTRsb9nkW6w/viewform?embedded=true" //replace with your own form id
width="100%"
height="100%"
className="w-full h-full border-none"
allowFullScreen
loading="lazy"
>
Loading…
</iframe>
</div>

<p className="mt-4 text-sm text-gray-500">
Having trouble loading the form?{' '}
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSf1-1avq8IoT-nIpXLacg-5YDz-HM4XyxeJRKrUTRsb9nkW6w/viewform?embedded=true" //replace with your own form id
className="text-blue-600 underline"
target="_blank"
rel="noopener noreferrer"
>
Open it in a new tab
</a>
</p>
</div>
);
};

export default FeedbackPage;
9 changes: 9 additions & 0 deletions notes-aid/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ const Footer = () => {
</Link>
</div>



<Link
href="/contributors"
className="flex items-center gap-2 hover:text-primary"
Expand Down Expand Up @@ -52,6 +54,13 @@ const Footer = () => {
Aarush
</Link>
</div>
<Link
href="/feedback"
className="vtext-sm underline hover:text-primary block text-right"
>
Submit Feedback
</Link>

</div>
</div>
</footer>
Expand Down