diff --git a/apps/portal/src/components/resumes/ResumesNavigation.ts b/apps/portal/src/components/resumes/ResumesNavigation.ts index e6b40344..a4c6805f 100644 --- a/apps/portal/src/components/resumes/ResumesNavigation.ts +++ b/apps/portal/src/components/resumes/ResumesNavigation.ts @@ -1,6 +1,11 @@ import type { ProductNavigationItems } from '~/components/global/ProductNavigation'; const navigation: ProductNavigationItems = [ + { + children: [], + href: '/resumes/about', + name: 'About Us', + }, { children: [], href: '/resumes/browse', diff --git a/apps/portal/src/pages/resumes/about.tsx b/apps/portal/src/pages/resumes/about.tsx new file mode 100644 index 00000000..8d2ab91c --- /dev/null +++ b/apps/portal/src/pages/resumes/about.tsx @@ -0,0 +1,63 @@ +export default function AboutUsPage() { + return ( +
+
+ Resume Review Portal +
+ +
+
+ Resume reviews{' '} + + + made simple + +
+
+ + {/* About Us Section */} +
+ About Us 🤓 +
+ +
+ As you apply for your dream jobs or internships, have you ever felt + unsure about your resume? Have you wondered about how others got past + resume screening in a breeze? Wonder no more! +
+ +
+ Tech Interview Handbook's very own Resume Review portal is here to help! + Simply submit your resume and collect invaluable feedback from our + community of Software Engineers, Hiring Managers and so many more... +
+ + {/* For fun, can remove later */} +
+ Psst...Yangshun might review your resumes... +
+ + {/* Feedback */} +
+ Feedback? New Features? BUGS?! 😱 +
+ +
+ Submit your feedback + + here + +
+
+ ); +}