[website][contents] mention resume review portal

pull/542/head
Yangshun Tay 2 years ago
parent 433a2ca11a
commit 7dcca6a4f4

@ -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

@ -29,6 +29,27 @@ function FAANGTechLeads({ position }) {
);
}
function TIHResumeReview({ position }) {
return (
<a
className={clsx(styles.container, styles.backgroundTIH)}
href={`https://app.techinterviewhandbook.org/resumes?utm_source=techinterviewhandbook&utm_medium=referral&utm_content=${position}&aff=1e80c401fe7e2`}
target="_blank"
rel="noopener"
onClick={() => {
window.gtag('event', `tih.resume_review.${position}.click`);
}}>
<p className={styles.tagline}>
<strong className={styles.title}>
Get your resume reviewed for free
</strong>
Try out our free new community-powered resume review portal. Upload a
resume, receive helpful comments and feedback from community members.
</p>
</a>
);
}
function GreatFrontEnd({ position }) {
return (
<a
@ -206,7 +227,11 @@ export default React.memo(function SidebarAd({ position }) {
}
if (path.includes('resume')) {
return <FAANGTechLeads key={Math.random()} position={position} />;
return rand < 0.67 ? (
<TIHResumeReview key={Math.random()} position={position} />
) : (
<FAANGTechLeads key={Math.random()} position={position} />
);
}
if (path.includes('negotiation') || path.includes('compensation')) {

@ -20,6 +20,10 @@
background-color: rgb(244, 63, 94);
}
.backgroundTIH {
background-color: #4f46e5;
}
.backgroundGreatFrontEnd {
background-color: rgb(79, 70, 229);
}

Loading…
Cancel
Save