website: change tagline

pull/215/head
Yangshun 3 years ago
parent 08c5918f79
commit d0458155cf

@ -27,7 +27,10 @@
## What is this?
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:
No one has time to do a few hundred LeetCode questions. Here's *free and curated* technical interview preparation materials for
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).
Besides the usual algorithm questions, other **awesome** stuff includes:
- [How to prepare](https://techinterviewhandbook.org/coding-round-overview) for coding interviews
- [Interview Cheatsheet](https://techinterviewhandbook.org/cheatsheet) - Straight-to-the-point Do's and Don'ts

@ -1,7 +1,7 @@
module.exports = {
title: 'Tech Interview Handbook',
tagline:
'Carefully curated content to help you ace your next technical interview',
'Curated technical interview preparation materials for busy engineers',
url: 'https://techinterviewhandbook.org',
baseUrl: '/',
favicon: 'img/favicon.png',

@ -8,6 +8,8 @@ import styles from './styles.module.css';
import successStories from '../data/successStories';
const BLIND_75_URL = 'https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU';
function Home() {
const context = useDocusaurusContext();
const {siteConfig = {}} = context;
@ -20,7 +22,9 @@ function Home() {
src={useBaseUrl('img/logo.svg')}
/>
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<p className="hero__subtitle">{siteConfig.tagline} <br/>
From the author of the <a href={BLIND_75_URL} target="_blank">Blind 75 List</a>
</p>
<div className={styles.buttons}>
<Link
className={classnames(
@ -105,7 +109,7 @@ function Home() {
<p>
No one has time to practice a few hundred LeetCode
questions. We tell you which are the best questions to
practice.
practice. We created the <a href={BLIND_75_URL} target="_blank">Blind 75 List</a>.
</p>
</div>
<div className="col">

Loading…
Cancel
Save