Skip to content

Commit d045815

Browse files
committed
website: change tagline
1 parent 08c5918 commit d045815

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@
2727

2828
## What is this?
2929

30-
Carefully curated content to help you ace your next technical interview, with a focus on algorithms. System design questions are in-progress. Besides the usual algorithm questions, other **awesome** stuff includes:
30+
No one has time to do a few hundred LeetCode questions. Here's *free and curated* technical interview preparation materials for
31+
busy engineers, from the author of the [Blind 75 List](https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU).
32+
33+
Besides the usual algorithm questions, other **awesome** stuff includes:
3134

3235
- [How to prepare](https://techinterviewhandbook.org/coding-round-overview) for coding interviews
3336
- [Interview Cheatsheet](https://techinterviewhandbook.org/cheatsheet) - Straight-to-the-point Do's and Don'ts

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
title: 'Tech Interview Handbook',
33
tagline:
4-
'Carefully curated content to help you ace your next technical interview',
4+
'Curated technical interview preparation materials for busy engineers',
55
url: 'https://techinterviewhandbook.org',
66
baseUrl: '/',
77
favicon: 'img/favicon.png',

website/src/pages/index.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import styles from './styles.module.css';
88

99
import successStories from '../data/successStories';
1010

11+
const BLIND_75_URL = 'https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU';
12+
1113
function Home() {
1214
const context = useDocusaurusContext();
1315
const {siteConfig = {}} = context;
@@ -20,7 +22,9 @@ function Home() {
2022
src={useBaseUrl('img/logo.svg')}
2123
/>
2224
<h1 className="hero__title">{siteConfig.title}</h1>
23-
<p className="hero__subtitle">{siteConfig.tagline}</p>
25+
<p className="hero__subtitle">{siteConfig.tagline} <br/>
26+
From the author of the <a href={BLIND_75_URL} target="_blank">Blind 75 List</a>
27+
</p>
2428
<div className={styles.buttons}>
2529
<Link
2630
className={classnames(
@@ -105,7 +109,7 @@ function Home() {
105109
<p>
106110
No one has time to practice a few hundred LeetCode
107111
questions. We tell you which are the best questions to
108-
practice.
112+
practice. We created the <a href={BLIND_75_URL} target="_blank">Blind 75 List</a>.
109113
</p>
110114
</div>
111115
<div className="col">

0 commit comments

Comments
 (0)