diff --git a/src/pages/Exp.tsx b/src/pages/Exp.tsx index 8a21bd4..73de89f 100644 --- a/src/pages/Exp.tsx +++ b/src/pages/Exp.tsx @@ -14,11 +14,17 @@ const exp = [ { title: "Klenty", location: "Chennai", position: "Full stack developer", year: "2018" }, { title: "Hugo's Way", - location: "Ireland (remote)", + location: "Remote", position: "Full stack developer", year: "2018-19", }, { 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 = () => ( @@ -61,9 +67,7 @@ const ExpUnit: React.FunctionComponent = ({ title, location, positio position: relative; `}> -

- {title}, {location} -

+

{[title, location].filter(Boolean).join(", ")}

= ({ title, location, positio {" . "} {year} @@ -111,7 +115,7 @@ const Exp: React.FunctionComponent = () => { } `}> {exp.map(unit => ( - + ))}