Skip to content

Commit

Permalink
feat(contentsquare): prepare for new position (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdarchen authored Aug 30, 2024
1 parent 6139486 commit 0316c08
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 7 deletions.
Binary file modified .README/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@

<div align="center">

<!-- TODO: Contentsquare
- update screenshot in README
- update About
- new screenshot in metadata
<!-- TODO(contentsquare): (when enough work data)
- update Résumé
- update section in Work Experience
- update section in AboutMe
- update summary on LinkedIn
-->

<!-- TODO: uncomment when public -->
Expand Down
Binary file modified public/resume.pdf
Binary file not shown.
Binary file modified public/website.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/components/home/1-my-name/MyName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ const MyName: FC = () => {
}}
className="mt-10 font-header text-sm tracking-wider text-gray-600 dark:text-gray-400 sm:text-base md:text-lg"
>
Senior Software Engineer at <a href="https://www.swile.co/">Swile</a>,
specialized in React, Node.js and DevOps technologies.
Senior Software Engineer at{' '}
<a href="https://contentsquare.com/">Contentsquare</a>, specialized in
React, Node.js and DevOps technologies.
</motion.h3>

<motion.div
Expand Down
8 changes: 8 additions & 0 deletions src/components/home/2-about-me/AboutMe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ const AboutMe: FC = () => {
</span>
</div>

<div className="font-header">
<span className="text-gray-600 dark:text-gray-400">
At the end of 2024, I chose to join{' '}
<strong>Contentsquare</strong> in a core team in order to seek
to have a more transversal impact.
</span>
</div>

{/* Technologies */}
<div className="font-header tracking-wide">
<span className="text-gray-600 dark:text-gray-400">
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/3-work-experience/WorkExperience.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import WorkExperienceDetails from './WorkExperienceDetails'
import { experiences } from './WorkExperienceList'

const WorkExperience: FC = () => {
const [tab, setTab] = useState('Swile')
const [tab, setTab] = useState('Contentsquare')

const ActiveExperience: FC = () => {
const experience = experiences.find((exp) => exp.tabTitle === tab)
Expand Down
23 changes: 23 additions & 0 deletions src/components/home/3-work-experience/WorkExperienceList.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { FC, ReactNode } from 'react'
import { DiGoogleAnalytics } from 'react-icons/di'
import {
FaCalculator,
FaCode,
Expand Down Expand Up @@ -30,6 +31,28 @@ const Arrow: FC = () => (
)

export const experiences: Experience[] = [
// Contentsquare
{
date: 'September 2024 - today',
title: 'Senior Software Engineer',
tabTitle: 'Contentsquare',
icon: <DiGoogleAnalytics />,
location: 'Paris (full remote), France',
company: 'Contentsquare',
description: <>{/* TODO(contentsquare): to fill */}</>,
technologies: [
'React',
'Node.js',
'Git',
'Kubernetes',
'Vue',
'Vite',
'Turborepo',
'pnpm',
],
link: 'https://contentsquare.com',
},

// Swile
{
date: 'July 2022 - today',
Expand Down

0 comments on commit 0316c08

Please sign in to comment.