|
|
|
@ -1,3 +1,5 @@
|
|
|
|
|
import Head from 'next/head';
|
|
|
|
|
|
|
|
|
|
import Container from '~/components/shared/Container';
|
|
|
|
|
|
|
|
|
|
const people = [
|
|
|
|
@ -29,6 +31,10 @@ const people = [
|
|
|
|
|
|
|
|
|
|
export default function AboutUsPage() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Head>
|
|
|
|
|
<title>About Us</title>
|
|
|
|
|
</Head>
|
|
|
|
|
<div className="lg:py-18 bg-white py-12">
|
|
|
|
|
<Container variant="xs">
|
|
|
|
|
<div className="space-y-12">
|
|
|
|
@ -60,14 +66,14 @@ export default function AboutUsPage() {
|
|
|
|
|
</h2>
|
|
|
|
|
<p className="text-lg text-slate-500">
|
|
|
|
|
As you apply for your dream jobs or internships, have you ever
|
|
|
|
|
felt unsure about your resume? Have you wondered about how others
|
|
|
|
|
got past resume screening in a breeze? Wonder no more!
|
|
|
|
|
felt unsure about your resume? Have you wondered about how
|
|
|
|
|
others got past resume screening in a breeze? Wonder no more!
|
|
|
|
|
</p>
|
|
|
|
|
<p className="text-lg text-slate-500">
|
|
|
|
|
Tech Interview Handbook's very own Resume Review portal is here to
|
|
|
|
|
help! Simply submit your resume and collect invaluable feedback
|
|
|
|
|
from our community of Software Engineers, Hiring Managers and so
|
|
|
|
|
many more...
|
|
|
|
|
Tech Interview Handbook's very own Resume Review portal is here
|
|
|
|
|
to help! Simply submit your resume and collect invaluable
|
|
|
|
|
feedback from our community of Software Engineers, Hiring
|
|
|
|
|
Managers and so many more...
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
@ -126,5 +132,6 @@ export default function AboutUsPage() {
|
|
|
|
|
</div>
|
|
|
|
|
</Container>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|