Skip to content

Commit 5650c36

Browse files
committed
February updates
1 parent 13c94e2 commit 5650c36

3 files changed

Lines changed: 22 additions & 4 deletions

File tree

src/assets/rrai_logo.jpg

2.92 KB
Loading

src/components/Content/TimelineEntries.tsx

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import hudlLogo from '../../assets/hudl.jpg';
88
import insights_module from '../../assets/insights_module.png';
99
import oracleLogo from '../../assets/oracle.jpg';
1010
import patentedLogo from '../../assets/patented.jpg';
11+
import rrai_logo from '../../assets/rrai_logo.jpg';
1112
import skyvue_1 from '../../assets/skyvue_1.png';
1213
import vannevar_logo from '../../assets/vannevar_logo.png';
1314
import vl10 from '../../assets/vl-10.jpeg';
@@ -21,9 +22,27 @@ import vl7 from '../../assets/vl-7.jpeg';
2122
import vl8 from '../../assets/vl-8.jpeg';
2223
import vl9 from '../../assets/vl-9.jpeg';
2324
import washULogo from '../../assets/washu.png';
25+
2426
import { TimelineEntry } from '../Timeline/Timeline';
2527

26-
export const experience: TimelineEntry[] = [
28+
export const experience: TimelineEntry[] = [{
29+
logo: rrai_logo,
30+
title: 'forterra',
31+
years: 'Feb . 2026 - present',
32+
positions: ['Principal Engineer'],
33+
organizations: ['c3', 'c3 integrations'],
34+
// highlights: [''],
35+
tags: [
36+
'react',
37+
'typescript',
38+
'git',
39+
'command',
40+
'control',
41+
'communications',
42+
'c3',
43+
'c2'
44+
],
45+
},
2746
{
2847
logo: vannevar_logo,
2948
title: 'vannevar',
@@ -63,7 +82,6 @@ export const experience: TimelineEntry[] = [
6382
'Service Directory services + frontend / backend utilities for accessing that API',
6483
'Reverse Geocoder services'
6584
],
66-
6785
tags: [
6886
'react',
6987
'typescript',

src/components/Timeline/Timeline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const TimelineItem = ({
9999
</h3>
100100
<div className="flex flex-col gap-8">
101101
<Tags tags={tags} />
102-
<div
102+
{highlights?.length ? <div
103103
className="rounded-[22px] p-6 bg-[var(--bg-primary)] flex flex-col gap-2 w-full"
104104
style={{ border: '1px solid #1e1e1e' }}
105105
>
@@ -108,7 +108,7 @@ const TimelineItem = ({
108108
<div key={`highlight-${idx}`}>{highlight}</div>
109109
))}
110110
</div>
111-
</div>
111+
</div> : null}
112112
{images?.length ? (
113113
<div className="rounded-3xl overflow-x-hidden w-full flex items-center justify-center">
114114
<Carousel slides={images.map(image => ({ src: image }))} />

0 commit comments

Comments
 (0)