From 5610e553ac3c94d546536845aa9e0444cccd3e75 Mon Sep 17 00:00:00 2001 From: Yangshun Date: Tue, 18 Jan 2022 07:32:56 +0800 Subject: [PATCH] website: reskin homepage features section --- website/src/pages/index.js | 185 ++++++++++++++-------------- website/src/pages/styles.module.css | 25 +++- 2 files changed, 114 insertions(+), 96 deletions(-) diff --git a/website/src/pages/index.js b/website/src/pages/index.js index 7e5fa6a2..21be44d6 100755 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -12,6 +12,71 @@ 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'; +const FEATURES = [ + { + title: <>๐Ÿ’ฏ Go From Zero to Hero, + description: ( + <> + Go from zero to tech interview hero with this handbook. No prior + interview experience needed. + + ), + link: '/introduction', + }, + { + title: <>๐Ÿ“ Curated Practice Questions, + description: ( + <> + No one has time to practice a few hundred questions. We created the{' '} + + Blind 75 List + {' '} + to tell you which the best questions are. + + ), + link: '/best-practice-questions', + }, + { + title: <>๐Ÿ“‹ Interview Cheatsheet, + description: ( + <> + Straight-to-the-point Do's and Don'ts during an interview. The battle is + already half won. + + ), + link: '/cheatsheet', + }, + { + title: <>๐Ÿ’โ€โ™€๏ธ Practical Algorithm Tips, + description: ( + <> + Practical tips for every algorithm topic - common techniques and corner + cases to look out for. + + ), + link: '/algorithms/introduction', + }, + { + title: <>๐Ÿ’ฌ Behavioral Questions, + description: ( + <> + Check out what behavioral questions companies commonly ask and you can + prepare your answers ahead of time. + + ), + link: '/behavioral-questions', + }, + { + title: <>๐Ÿงช Tested and Proven, + description: ( + <> + Countless engineers have gotten their dream jobs with the help of Tech + Interview Handbook. + + ), + }, +]; + function Home() { const context = useDocusaurusContext(); const {siteConfig = {}} = context; @@ -111,7 +176,7 @@ function Home() { className={classnames( 'col', 'col--4', - styles.featuresRowItem, + styles.featuresRowItemContainer, )}>

Not sure where to start? We got you covered