|
| 1 | +import Head from 'next/head'; |
| 2 | + |
1 | 3 | import Container from '~/components/shared/Container'; |
2 | 4 |
|
3 | 5 | const people = [ |
@@ -29,102 +31,107 @@ const people = [ |
29 | 31 |
|
30 | 32 | export default function AboutUsPage() { |
31 | 33 | return ( |
32 | | - <div className="lg:py-18 bg-white py-12"> |
33 | | - <Container variant="xs"> |
34 | | - <div className="space-y-12"> |
35 | | - <div className="space-y-6 text-center"> |
36 | | - <h1 className="text-3xl font-bold tracking-tight sm:text-4xl"> |
37 | | - Resume Review Portal |
38 | | - </h1> |
39 | | - <div className="flex justify-center text-2xl font-bold"> |
40 | | - <div className="font-display sm:text-md mx-auto max-w-xl text-2xl font-medium italic tracking-tight text-slate-500"> |
41 | | - Resume reviews{' '} |
42 | | - <span className="text-primary-500 relative whitespace-nowrap"> |
43 | | - <svg |
44 | | - aria-hidden="true" |
45 | | - className="absolute top-2/3 left-0 h-[0.58em] w-full fill-blue-300/70" |
46 | | - preserveAspectRatio="none" |
47 | | - viewBox="0 0 418 42"> |
48 | | - <path d="M203.371.916c-26.013-2.078-76.686 1.963-124.73 9.946L67.3 12.749C35.421 18.062 18.2 21.766 6.004 25.934 1.244 27.561.828 27.778.874 28.61c.07 1.214.828 1.121 9.595-1.176 9.072-2.377 17.15-3.92 39.246-7.496C123.565 7.986 157.869 4.492 195.942 5.046c7.461.108 19.25 1.696 19.17 2.582-.107 1.183-7.874 4.31-25.75 10.366-21.992 7.45-35.43 12.534-36.701 13.884-2.173 2.308-.202 4.407 4.442 4.734 2.654.187 3.263.157 15.593-.78 35.401-2.686 57.944-3.488 88.365-3.143 46.327.526 75.721 2.23 130.788 7.584 19.787 1.924 20.814 1.98 24.557 1.332l.066-.011c1.201-.203 1.53-1.825.399-2.335-2.911-1.31-4.893-1.604-22.048-3.261-57.509-5.556-87.871-7.36-132.059-7.842-23.239-.254-33.617-.116-50.627.674-11.629.54-42.371 2.494-46.696 2.967-2.359.259 8.133-3.625 26.504-9.81 23.239-7.825 27.934-10.149 28.304-14.005.417-4.348-3.529-6-16.878-7.066Z" /> |
49 | | - </svg> |
50 | | - <span className="relative">made simple</span> |
51 | | - </span> |
| 34 | + <> |
| 35 | + <Head> |
| 36 | + <title>About Us</title> |
| 37 | + </Head> |
| 38 | + <div className="lg:py-18 bg-white py-12"> |
| 39 | + <Container variant="xs"> |
| 40 | + <div className="space-y-12"> |
| 41 | + <div className="space-y-6 text-center"> |
| 42 | + <h1 className="text-3xl font-bold tracking-tight sm:text-4xl"> |
| 43 | + Resume Review Portal |
| 44 | + </h1> |
| 45 | + <div className="flex justify-center text-2xl font-bold"> |
| 46 | + <div className="font-display sm:text-md mx-auto max-w-xl text-2xl font-medium italic tracking-tight text-slate-500"> |
| 47 | + Resume reviews{' '} |
| 48 | + <span className="text-primary-500 relative whitespace-nowrap"> |
| 49 | + <svg |
| 50 | + aria-hidden="true" |
| 51 | + className="absolute top-2/3 left-0 h-[0.58em] w-full fill-blue-300/70" |
| 52 | + preserveAspectRatio="none" |
| 53 | + viewBox="0 0 418 42"> |
| 54 | + <path d="M203.371.916c-26.013-2.078-76.686 1.963-124.73 9.946L67.3 12.749C35.421 18.062 18.2 21.766 6.004 25.934 1.244 27.561.828 27.778.874 28.61c.07 1.214.828 1.121 9.595-1.176 9.072-2.377 17.15-3.92 39.246-7.496C123.565 7.986 157.869 4.492 195.942 5.046c7.461.108 19.25 1.696 19.17 2.582-.107 1.183-7.874 4.31-25.75 10.366-21.992 7.45-35.43 12.534-36.701 13.884-2.173 2.308-.202 4.407 4.442 4.734 2.654.187 3.263.157 15.593-.78 35.401-2.686 57.944-3.488 88.365-3.143 46.327.526 75.721 2.23 130.788 7.584 19.787 1.924 20.814 1.98 24.557 1.332l.066-.011c1.201-.203 1.53-1.825.399-2.335-2.911-1.31-4.893-1.604-22.048-3.261-57.509-5.556-87.871-7.36-132.059-7.842-23.239-.254-33.617-.116-50.627.674-11.629.54-42.371 2.494-46.696 2.967-2.359.259 8.133-3.625 26.504-9.81 23.239-7.825 27.934-10.149 28.304-14.005.417-4.348-3.529-6-16.878-7.066Z" /> |
| 55 | + </svg> |
| 56 | + <span className="relative">made simple</span> |
| 57 | + </span> |
| 58 | + </div> |
52 | 59 | </div> |
53 | 60 | </div> |
54 | | - </div> |
55 | 61 |
|
56 | | - {/* About Us Section */} |
57 | | - <div className="space-y-6"> |
58 | | - <h2 className="text-2xl font-bold tracking-tight sm:text-3xl"> |
59 | | - About Us 🤓 |
60 | | - </h2> |
61 | | - <p className="text-lg text-slate-500"> |
62 | | - As you apply for your dream jobs or internships, have you ever |
63 | | - felt unsure about your resume? Have you wondered about how others |
64 | | - got past resume screening in a breeze? Wonder no more! |
65 | | - </p> |
66 | | - <p className="text-lg text-slate-500"> |
67 | | - Tech Interview Handbook's very own Resume Review portal is here to |
68 | | - help! Simply submit your resume and collect invaluable feedback |
69 | | - from our community of Software Engineers, Hiring Managers and so |
70 | | - many more... |
71 | | - </p> |
72 | | - </div> |
| 62 | + {/* About Us Section */} |
| 63 | + <div className="space-y-6"> |
| 64 | + <h2 className="text-2xl font-bold tracking-tight sm:text-3xl"> |
| 65 | + About Us 🤓 |
| 66 | + </h2> |
| 67 | + <p className="text-lg text-slate-500"> |
| 68 | + As you apply for your dream jobs or internships, have you ever |
| 69 | + felt unsure about your resume? Have you wondered about how |
| 70 | + others got past resume screening in a breeze? Wonder no more! |
| 71 | + </p> |
| 72 | + <p className="text-lg text-slate-500"> |
| 73 | + Tech Interview Handbook's very own Resume Review portal is here |
| 74 | + to help! Simply submit your resume and collect invaluable |
| 75 | + feedback from our community of Software Engineers, Hiring |
| 76 | + Managers and so many more... |
| 77 | + </p> |
| 78 | + </div> |
73 | 79 |
|
74 | | - {/* Feedback */} |
75 | | - <div className="space-y-6"> |
76 | | - <h2 className="text-2xl font-bold tracking-tight sm:text-3xl"> |
77 | | - Feedback? New Features? BUGS?! 😱 |
78 | | - </h2> |
| 80 | + {/* Feedback */} |
| 81 | + <div className="space-y-6"> |
| 82 | + <h2 className="text-2xl font-bold tracking-tight sm:text-3xl"> |
| 83 | + Feedback? New Features? BUGS?! 😱 |
| 84 | + </h2> |
79 | 85 |
|
80 | | - <p className="text-lg text-slate-500"> |
81 | | - Submit your feedback |
82 | | - <a |
83 | | - className="text-primary-600 hover:text-primary-500 ml-1" |
84 | | - href="https://forms.gle/KgA6KWDD4XNa53uJA" |
85 | | - rel="noreferrer" |
86 | | - target="_blank"> |
87 | | - here |
88 | | - </a> |
89 | | - . |
90 | | - </p> |
91 | | - </div> |
| 86 | + <p className="text-lg text-slate-500"> |
| 87 | + Submit your feedback |
| 88 | + <a |
| 89 | + className="text-primary-600 hover:text-primary-500 ml-1" |
| 90 | + href="https://forms.gle/KgA6KWDD4XNa53uJA" |
| 91 | + rel="noreferrer" |
| 92 | + target="_blank"> |
| 93 | + here |
| 94 | + </a> |
| 95 | + . |
| 96 | + </p> |
| 97 | + </div> |
92 | 98 |
|
93 | | - <div className="space-y-6"> |
94 | | - <h2 className="text-2xl font-bold tracking-tight sm:text-3xl"> |
95 | | - Meet the Team |
96 | | - </h2> |
97 | | - <ul |
98 | | - className="grid grid-cols-2 items-start gap-8 md:grid-cols-1 md:items-start md:space-y-0" |
99 | | - role="list"> |
100 | | - {people.map((person) => ( |
101 | | - <li key={person.name}> |
102 | | - <div className="space-y-4 sm:grid sm:grid-cols-4 sm:gap-6 sm:space-y-0 lg:gap-8"> |
103 | | - <div className="aspect-w-2 aspect-h-2 h-0"> |
104 | | - <img |
105 | | - alt={person.name} |
106 | | - className="rounded-lg object-cover shadow-lg" |
107 | | - src={person.imageUrl} |
108 | | - /> |
109 | | - </div> |
110 | | - <div className="sm:col-span-3"> |
111 | | - <div className="space-y-4"> |
112 | | - <div className="text-md space-y-1 font-medium leading-6 sm:text-lg"> |
113 | | - <h3>{person.name}</h3> |
114 | | - <p className="text-primary-600">{person.role}</p> |
115 | | - </div> |
116 | | - <div className="text-sm sm:text-lg"> |
117 | | - <p className="text-slate-500">{person.bio}</p> |
| 99 | + <div className="space-y-6"> |
| 100 | + <h2 className="text-2xl font-bold tracking-tight sm:text-3xl"> |
| 101 | + Meet the Team |
| 102 | + </h2> |
| 103 | + <ul |
| 104 | + className="grid grid-cols-2 items-start gap-8 md:grid-cols-1 md:items-start md:space-y-0" |
| 105 | + role="list"> |
| 106 | + {people.map((person) => ( |
| 107 | + <li key={person.name}> |
| 108 | + <div className="space-y-4 sm:grid sm:grid-cols-4 sm:gap-6 sm:space-y-0 lg:gap-8"> |
| 109 | + <div className="aspect-w-2 aspect-h-2 h-0"> |
| 110 | + <img |
| 111 | + alt={person.name} |
| 112 | + className="rounded-lg object-cover shadow-lg" |
| 113 | + src={person.imageUrl} |
| 114 | + /> |
| 115 | + </div> |
| 116 | + <div className="sm:col-span-3"> |
| 117 | + <div className="space-y-4"> |
| 118 | + <div className="text-md space-y-1 font-medium leading-6 sm:text-lg"> |
| 119 | + <h3>{person.name}</h3> |
| 120 | + <p className="text-primary-600">{person.role}</p> |
| 121 | + </div> |
| 122 | + <div className="text-sm sm:text-lg"> |
| 123 | + <p className="text-slate-500">{person.bio}</p> |
| 124 | + </div> |
118 | 125 | </div> |
119 | 126 | </div> |
120 | 127 | </div> |
121 | | - </div> |
122 | | - </li> |
123 | | - ))} |
124 | | - </ul> |
| 128 | + </li> |
| 129 | + ))} |
| 130 | + </ul> |
| 131 | + </div> |
125 | 132 | </div> |
126 | | - </div> |
127 | | - </Container> |
128 | | - </div> |
| 133 | + </Container> |
| 134 | + </div> |
| 135 | + </> |
129 | 136 | ); |
130 | 137 | } |
0 commit comments