Professional Journey

Professional Journey & Technical Impact

Architecting digital ecosystems with a focus on headless scalability, design system industrialization, and high-performance frontend governance.

Frontend Governance

Orchestrating technical standards and quality benchmarks across multi-disciplinary squads to ensure architectural consistency.

Industrialized Systems

Building scalable UI libraries and design systems that bridge the gap between Figma precision and production code.

Web Performance

Deep optimization for Core Web Vitals, leveraging SSR/ISR strategies to maximize user retention and conversion.

Technical SEO

Implementing semantic HTML structures and server-side rendering patterns to dominate search engine rankings.

Timeline

Nov 2025 — Present

Lead E-commerce Headless

KAIRO

  • Frontend architecture evolution toward headless & composable commerce
  • Frontend governance across squads: standards, code quality, shared practices
  • Design system industrialization for UI consistency at platform scale
  • Web performance & technical SEO optimization
  • Mentoring, tech debt reduction and cross-functional alignment
ReactTypeScriptHeadless CommerceDesign SystemWeb PerformanceAzure
Jan 2025 — Oct 2025

Lead Developer — Shopify Headless Commerce

Back Market

  • Architecture: Remix / React / Shopify Headless / GraphQL / REST / GCP
  • Headless commerce: Hydrogen implementation for B2B storefronts
  • Payments & data: Stripe, MongoDB
  • Frontend: reusable components with React, Tailwind CSS, CVA
  • Backend features with Flask / Python
  • Analytics: Segment, Google Analytics, monitoring & alerting
RemixReactShopify HeadlessGraphQLStripeGoogle Cloud Platform (GCP)Python
Nov 2023 — Dec 2024

Senior Frontend Engineer — Shopify Headless

Decathlon France

  • Architecture: Next.js SSR / React / TypeScript / Shopify Headless
  • Data layer: PostgreSQL / Prisma
  • Design system revamp with Tailwind CSS
  • Performance optimization with React Server Components
Next.jsReactTypeScriptShopify HeadlessPostgreSQLPrismaGoogle Cloud Platform (GCP)
Dec 2021 — Jun 2023

Technical Lead — Headless Platform

Futures Factory

  • Architecture: Next.js / React / TypeScript / Strapi / GraphQL / GCP
  • Blockchain: NFT collections (ERC721 / Solidity) on Polygon
  • Team: recruited 2 fullstack devs + 1 devops, Scrum setup
  • Component library with React + Tailwind
Next.jsReactStrapiGraphQLSolidityGCP (Firestore, Cloud Run, Cloud Functions, Cloud Storage )
Jun 2021 — Dec 2021

Technical Lead — Headless CMS Platform

Servier

  • Architecture: Next.js / React / TypeScript / Strapi / GraphQL / Azure
  • Delivered POC: myhealthpartner.com
  • Hired a team of 3 fullstack developers
Next.jsReactStrapiGraphQLAzure
Oct 2020 — Jun 2021

Lead Front-End Engineer — Design System

iziwork

  • Component library & design tokens (Design System Bricks)
  • Quality: Storybook, Jest, React Testing Library, Chromatic
  • Versioning: RollUp, Conventional Commits, Private NPM
ReactStorybookJestDesign SystemNext.js
Dec 2017 — Oct 2020

Lead Front-End Engineer — Frontend Architecture

Allianz Trade

  • Architecture: React (Atomic Design) + Datalayer Gateway Node.js
  • Testing strategy: BDD with Cucumber / Gherkin / WireMock
  • Agile practices, mentoring, onboarding
  • Team scaling: 3 → 18 developers
ReactNode.jsBDDAgileAWS
Jun 2017 — Nov 2017

Lead Tech & Scrum Master

OUIGO

  • Architecture: React Native / TypeScript / Realm / Expo
  • CI/CD: Jenkins + TestFairy
  • Trained .NET developers on React
React NativeTypeScriptExpoCI/CD
Oct 2016 — Jun 2017

Front-End Engineer

HrFlow.ai

  • Web app SPA: React / Redux Saga
  • APIs: Symfony (PHP) + Flask (Python)
ReactReduxPHPPython

Technical Implementation

architectural_pattern.ts
interface ComposableStack {
  headlessCMS: "Contentful" | "Sanity";
  commerceEngine: "Shopify" | "BigCommerce";
  renderingStrategy: "ISR" | "SSR";
}

const deployArchitecture = (config: ComposableStack) => {
  // Industrializing the Design System Core
  return initFrontendPipeline(config)
    .applySecurityHeaders()
    .optimizeCoreWebVitals()
    .scaleToRegionalMarkets();
};