diff --git a/apps/website/contents/resume.md b/apps/website/contents/resume.md index e173f17f..5c2608a5 100644 --- a/apps/website/contents/resume.md +++ b/apps/website/contents/resume.md @@ -327,9 +327,9 @@ I recommend using these free tools to optimize your resume: ### 1. Free resume review -[Resume Worded](https://a.paddle.com/v2/click/29828/144522?link=1861) uses AI to give instant expert feedback on your resume. +Tech Interview Handbook has a [resume review portal](https://app.techinterviewhandbook.org/resumes) where you can upload your resume and get helpful comments and feedback from other community members and even the authors of Tech Interview Handbook! -We previously recommended [TopResume's free all-in-one review](https://tidd.ly/3GxVIs9) of your resume, but received some feedback that that their reviewers are not technical and do not give feedback relevant to engineering roles. In that regard, we recommend [FAANG Tech Leads' Resume Review service (paid)](https://www.faangtechleads.com?utm_source=techinterviewhandbook&utm_medium=referral&utm_content=ats_template&aff=1e80c401fe7e2) where your resume will be reviewed by ex-FAANG hiring managers and engineers, not random writers who don't understand technology. +If you are willing to spend some money we recommend [FAANG Tech Leads' Resume Review service](https://www.faangtechleads.com?utm_source=techinterviewhandbook&utm_medium=referral&utm_content=ats_template&aff=1e80c401fe7e2) where your resume will be reviewed by ex-FAANG hiring managers and engineers, not random writers who don't understand technology. ### 2. Test readability with industry-standard ATS diff --git a/apps/website/src/components/SidebarAd/index.js b/apps/website/src/components/SidebarAd/index.js index 0e250e20..0de6fa0e 100644 --- a/apps/website/src/components/SidebarAd/index.js +++ b/apps/website/src/components/SidebarAd/index.js @@ -29,6 +29,27 @@ function FAANGTechLeads({ position }) { ); } +function TIHResumeReview({ position }) { + return ( + { + window.gtag('event', `tih.resume_review.${position}.click`); + }}> +

+ + Get your resume reviewed for free + + Try out our free new community-powered resume review portal. Upload a + resume, receive helpful comments and feedback from community members. +

+
+ ); +} + function GreatFrontEnd({ position }) { return ( ; + return rand < 0.67 ? ( + + ) : ( + + ); } if (path.includes('negotiation') || path.includes('compensation')) { diff --git a/apps/website/src/components/SidebarAd/styles.module.css b/apps/website/src/components/SidebarAd/styles.module.css index dded48cc..6ce4c86b 100644 --- a/apps/website/src/components/SidebarAd/styles.module.css +++ b/apps/website/src/components/SidebarAd/styles.module.css @@ -20,6 +20,10 @@ background-color: rgb(244, 63, 94); } +.backgroundTIH { + background-color: #4f46e5; +} + .backgroundGreatFrontEnd { background-color: rgb(79, 70, 229); }