Skip to content

Commit 06219ab

Browse files
committed
Updates BIO and puts a dynamic yearsOfExperience counter
1 parent f0ecca4 commit 06219ab

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/components/About.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ export default function About({
33
}: {
44
numberOfParagraphs?: number;
55
}) {
6+
const yearsOfExperience = new Date().getFullYear() - 2018;
7+
68
const textArray = [
7-
"Software Developer with experience with Python and Front-End Development. Currently interested in Back-End development with .NET and C#.",
9+
"Software Developer with experience in Front-End Development with React (JavaScript/TypeScript), and also interested in Back-End Development with ASP.NET Core, NodeJS, and Django.",
10+
11+
`In the last ${yearsOfExperience} years, I’ve been working with programming languages like JavaScript, TypeScript, Python, C#, and with frameworks like ReactJS, GatsbyJS, Astro, NodeJS, Django, .NET Core, and spaCy.`,
812

9-
"I am also interested in Generative Syntax, Formal Semantics, Natural Language Processing (NLP) and Analytic Philosophy, since I am also a bachelor in Linguistics.",
13+
"I am also interested in Functional Programming with Elixir, and I am experienced in NLP (Natural Language Processing), Generative Syntax and Formal Semantics.",
1014
];
1115

1216
return (

0 commit comments

Comments
 (0)