Browse Source

(feat) update experience

Signed-off-by: Muthu Kumar <muthukumar@thefeathers.in>
pull/1/head
Muthu Kumar 3 years ago
parent
commit
aed43463be
Signed by: mkrhere GPG Key ID: 3FD688398897097E
  1. 16
      src/pages/Exp.tsx

16
src/pages/Exp.tsx

@ -14,11 +14,17 @@ const exp = [
{ title: "Klenty", location: "Chennai", position: "Full stack developer", year: "2018" }, { title: "Klenty", location: "Chennai", position: "Full stack developer", year: "2018" },
{ {
title: "Hugo's Way", title: "Hugo's Way",
location: "Ireland (remote)", location: "Remote",
position: "Full stack developer", position: "Full stack developer",
year: "2018-19", year: "2018-19",
}, },
{ title: "Feathers Studio", location: "Chennai", position: "Founder", year: "2019-present" }, { title: "Feathers Studio", location: "Chennai", position: "Founder", year: "2019-present" },
{
title: "Navana Tech",
location: "Remote",
position: "Lead web dev",
year: "2021-present",
},
]; ];
const Circle: React.FunctionComponent = () => ( const Circle: React.FunctionComponent = () => (
@ -61,9 +67,7 @@ const ExpUnit: React.FunctionComponent<Experience> = ({ title, location, positio
position: relative; position: relative;
`}> `}>
<Circle /> <Circle />
<h3> <h3>{[title, location].filter(Boolean).join(", ")}</h3>
{title}, {location}
</h3>
<span <span
className={css` className={css`
color: #bdbdbd; color: #bdbdbd;
@ -73,7 +77,7 @@ const ExpUnit: React.FunctionComponent<Experience> = ({ title, location, positio
{" . "} {" . "}
<span <span
className={css` className={css`
font-weight: 100; font-weight: 300;
`}> `}>
{year} {year}
</span> </span>
@ -111,7 +115,7 @@ const Exp: React.FunctionComponent = () => {
} }
`}> `}>
{exp.map(unit => ( {exp.map(unit => (
<ExpUnit {...unit} key={unit.title} /> <ExpUnit key={unit.title} {...unit} />
))} ))}
</div> </div>
</Container> </Container>

Loading…
Cancel
Save