Remove app.techinterviewhandbook.org mentions

This commit is contained in:
Yangshun
2026-03-20 16:58:05 +08:00
parent 155e636829
commit 37d533e4de
4 changed files with 5 additions and 37 deletions

View File

@@ -53,7 +53,7 @@ Salaries of top US tech internships in 2016 ([source](https://twitter.com/rodney
### Singapore
We ran a survey to find out what the famous tech companies in Singapore are paying new hires in 2022/2023 and here's a sample of the results. View the [full dataset](https://app.techinterviewhandbook.org/offers) or [contribute your data](https://app.techinterviewhandbook.org/offers/submit)!
We ran a survey to find out what the famous tech companies in Singapore are paying new hires in 2022/2023, and here's a sample of the results:
| Company | Internship (monthly in SGD) | Fresh Grad Annual Total (SGD) |
| ------------- | --------------------------- | ----------------------------- |

View File

@@ -321,13 +321,11 @@ While optimizing for every application is ideal, you can generalize your resume
<InDocAd />
## Free tools to review your resume
## Tools to review your resume
I recommend using these free tools to optimize your resume:
I recommend using these tools to optimize your resume:
### 1. Free resume review
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!
### 1. Resume review
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.

View File

@@ -29,28 +29,6 @@ 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 <u>community-powered resume review portal</u>.
Upload a resume, receive helpful comments and feedback from community
members.
</p>
</a>
);
}
function GreatFrontEnd({ position }) {
return (
<a
@@ -141,11 +119,7 @@ export default React.memo(function SidebarAd({ position }) {
}
if (path.includes('resume')) {
return rand < 0.67 ? (
<TIHResumeReview key={Math.random()} position={position} />
) : (
<FAANGTechLeads key={Math.random()} position={position} />
);
return <FAANGTechLeads key={Math.random()} position={position} />;
}
if (path.includes('system-design')) {

View File

@@ -20,10 +20,6 @@
background-color: rgb(244, 63, 94);
}
.backgroundTIH {
background-color: #4f46e5;
}
.backgroundGreatFrontEnd {
background-image: linear-gradient(270deg, #ec4899, #4f46e5);
}