diff --git a/website/src/data/successStories.js b/website/src/data/successStories.js index 56d03204..c75aa58c 100644 --- a/website/src/data/successStories.js +++ b/website/src/data/successStories.js @@ -1,6 +1,28 @@ import React from 'react'; export default [ + { + name: 'Erin Teo', + title: 'Front End Engineer, Facebook', + thumbnail: 'https://avatars1.githubusercontent.com/u/5081708?s=460&v=4', + quote: ( + <> + Preparing for my first rounds of tech interviews was really daunting - I + wasn't sure what to expect and where to start. This handbook together + with the{' '} + + Front End Interview Handbook + {' '} + was a great starting point for me. It clearly describes each part of the + process and has tons of awesome tips and resources. With this handbook + and lots of practice, I managed to get offers from Facebook, Dropbox and + Amazon! + + ), + }, { name: 'Siddhesh Karekar', title: 'Software Engineer, Google', diff --git a/website/src/pages/index.js b/website/src/pages/index.js index ad1fd8ef..2fddf4e5 100755 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -44,83 +44,89 @@ function Home() {
-
-
-
-

- Why Tech Interview Handbook? -

-
-
-

From Zero to Hero

-

- Go from zero to tech interview hero with this handbook. No - prior interview experience needed. -

+
+
+
+
+

+ Why Tech Interview Handbook? +

+
+
+

From Zero to Hero

+

+ Go from zero to tech interview hero with this handbook. No + prior interview experience needed. +

+
+
+

Curated Practice Questions

+

+ No one has time to practice a few hundred Leetcode + questions. We tell you which are the best questions to + practice. +

+
+
+

Interview Cheatsheet

+

+ Straight-to-the-point Do's and Don'ts during an interview +

+
-
-

Curated Practice Questions

-

- No one has time to practice a few hundred Leetcode - questions. We tell you which are the best questions to - practice. -

-
-
-

Interview Cheatsheet

-

- Straight-to-the-point Do's and Don'ts during an interview -

-
-
-
-
-

Practical Algorithm Tips

-

- Practical tips for every algorithm topic - common techniques - and corner cases to look out for. -

-
-
-

Behavioral Questions

-

- Check out what behavioral questions companies commonly ask - and you can prepare your answers ahead of time. -

-
-
-

Tested and Proven

-

- Countless engineers have gotten their dream jobs with its - help. -

+
+
+

Practical Algorithm Tips

+

+ Practical tips for every algorithm topic - common + techniques and corner cases to look out for. +

+
+
+

Behavioral Questions

+

+ Check out what behavioral questions companies commonly ask + and you can prepare your answers ahead of time. +

+
+
+

Tested and Proven

+

+ Countless engineers have gotten their dream jobs with its + help. +

+
-
-
-
-
-

Success Stories

-
- {successStories.map(user => ( -
-
-
- -
-

{user.name}

- {user.title} +
+
+
+
+
+

Success Stories

+
+ {successStories.map(user => ( +
+
+
+ +
+

{user.name}

+ + {user.title} + +
+
+
"{user.quote}"
+
-
-
"{user.quote}"
-
-
- ))} + ))} +
diff --git a/website/src/pages/styles.module.css b/website/src/pages/styles.module.css index 85462544..9d8a2feb 100755 --- a/website/src/pages/styles.module.css +++ b/website/src/pages/styles.module.css @@ -20,3 +20,7 @@ align-items: center; justify-content: center; } + +.sectionAlt { + background-color: var(--ifm-color-emphasis-alpha-05); +}