Skip to content

Commit 336fce1

Browse files
committed
added photos
1 parent 04af5f0 commit 336fce1

File tree

5 files changed

+52
-5
lines changed

5 files changed

+52
-5
lines changed

src/assets/exec/henry.jpg

1.13 MB
Loading

src/assets/exec/manav.jpg

79.4 KB
Loading

src/assets/exec/reid.jpg

93.1 KB
Loading

src/assets/exec/saketh.jpg

69.7 KB
Loading

src/pages/About.tsx

Lines changed: 52 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ import React from 'react';
33
import '../styles/style.css';
44
import bhargav from '../assets/exec/bhargav.jpg';
55
import gloria from '../assets/exec/gloria.jpg';
6-
import advait from '../assets/exec/advait.jpg'
6+
import advait from '../assets/exec/advait.jpg';
7+
import reid from '../assets/exec/reid.jpg';
8+
import manav from '../assets/exec/manav.jpg';
9+
import saketh from '../assets/exec/saketh.jpg';
10+
import henry from '../assets/exec/henry.jpg';
711
// TODO: add image to ../assets/exec/name.jpg and import here
812

913
const About: React.FC = () => {
@@ -43,7 +47,7 @@ const About: React.FC = () => {
4347
<div style={{textAlign: 'center'}}>
4448
<a href="" target="_blank" rel="noopener noreferrer">
4549
<img
46-
src={"https://media.licdn.com/dms/image/v2/D5603AQEETFQfjDxTLQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1725848835082?e=1755734400&v=beta&t=luHSHKAxxVZU1hgV6MTAUWbvlGP5Rj3l2teRNpmEJGI"}
50+
src={manav}
4751
alt="team members"
4852
style={{
4953
width: '200px',
@@ -68,7 +72,7 @@ const About: React.FC = () => {
6872
<div style={{textAlign: 'center'}}>
6973
<a href="" target="_blank" rel="noopener noreferrer">
7074
<img
71-
src={"https://media.licdn.com/dms/image/v2/D4E03AQHdR1Vl1ck50Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1704406369721?e=1755734400&v=beta&t=pq6jZqcuylSls7wz29-yILkg2ZuLHSG887i-paZjgUU"}
75+
src={reid}
7276
alt="team members"
7377
style={{
7478
width: '200px',
@@ -93,7 +97,7 @@ const About: React.FC = () => {
9397
<div style={{textAlign: 'center'}}>
9498
<a href="" target="_blank" rel="noopener noreferrer">
9599
<img
96-
src={"https://media.licdn.com/dms/image/v2/D4D03AQGmHUkcEL5yXQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1726537823056?e=1755734400&v=beta&t=LmOs__0nUXh85eHU4Wg8flkDZS0BBLYk9JeglUKnMhA"}
100+
src={saketh}
97101
alt="team members"
98102
style={{
99103
width: '200px',
@@ -118,7 +122,7 @@ const About: React.FC = () => {
118122
</section>
119123
<br></br>
120124
<section>
121-
<h2 className="heading-subtitle-bold">Founders & Consultants</h2>
125+
<h2 className="heading-subtitle-bold">Founders</h2>
122126
<p></p>
123127
<div style={{ display: 'flex', justifyContent: 'left', alignItems: 'center', gap: '20px', flexWrap: 'wrap', marginTop: '2rem' }}>
124128
<div style={{textAlign: 'center'}}>
@@ -195,8 +199,51 @@ const About: React.FC = () => {
195199
</a>
196200
<h5 style={{marginTop: '1px'}}>Advait Patel</h5>
197201
</div>
202+
203+
<div style={{textAlign: 'center'}}>
204+
<a href="https://hungdche.github.io/" target="_blank" rel="noopener noreferrer">
205+
<img
206+
src={henry}
207+
alt="team members"
208+
style={{
209+
width: '200px',
210+
height: '200px',
211+
objectFit: 'cover',
212+
borderRadius: '10px',
213+
boxShadow: '0 4px 8px rgba(0, 0, 0, 0.1)'
214+
}}
215+
onMouseEnter={(e) => {
216+
e.currentTarget.style.transform = 'scale(1.03)';
217+
e.currentTarget.style.boxShadow = '0 8px 16px rgba(0, 0, 0, 0.2)';
218+
}}
219+
onMouseLeave={(e) => {
220+
e.currentTarget.style.transform = 'scale(1)';
221+
e.currentTarget.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.1)';
222+
}}
223+
/>
224+
</a>
225+
<h5 style={{marginTop: '1px'}}>Henry Che</h5>
226+
</div>
227+
198228
</div>
199229
</section>
230+
231+
<br></br>
232+
<section>
233+
<h2 className="heading-subtitle-bold">Where We've Been</h2>
234+
<ul>
235+
<li>Amazon Robotics</li>
236+
<li>Anduril</li>
237+
<li>DYNA Robotics</li>
238+
<li>General Biological</li>
239+
<li>General Motors</li>
240+
<li>NASA</li>
241+
<li>SceniX</li>
242+
<li>Slip Robotics</li>
243+
<li>Waabi</li>
244+
<li>Zoox</li>
245+
</ul>
246+
</section>
200247
</div>
201248
);
202249
};

0 commit comments

Comments
 (0)