import React from 'react' import { createRoot } from 'react-dom/client' import { ArrowDown, ArrowUpRight, BriefcaseBusiness, Code2, Database, Download, GraduationCap, Languages, Mail, MapPin, Phone, Sparkles, Workflow, } from 'lucide-react' import './styles.css' const experience = [ { role: 'Data Scientist & Business Analyst', company: 'CERIU', place: 'Montréal, Canada', period: '2024 — Present', bullets: [ 'Model, optimize, and automate analytical production processes.', 'Design structured deployment frameworks covering verification, testing, validation, and user support.', 'Develop predictive models at Québec scale using water-asset history from more than 800 municipalities.', ], }, { role: 'Techno-functional Consultant', company: 'Kazacube', place: 'Casablanca, Morocco', period: '2022 — 2023', bullets: [ 'Translated logistics and production requirements into OpenProd and Odoo ERP solutions.', 'Customized systems with Python, XML, SQL, and Jaspersoft and supported deployment.', ], }, { role: 'ServiceNow Consultant Intern', company: 'DXC Technology', place: 'Technopolis Rabat, Morocco', period: '2022', bullets: ['Modified ServiceNow instances and developed operational workflows.'], }, ] const skills = [ { icon: Database, title: 'Data & BI', text: 'Data quality, data governance, scientific data analysis, advanced Excel, Power BI, Visio, Lucidchart', }, { icon: Code2, title: 'Programming & AI', text: 'Python, SQL, JavaScript, HTML, GitHub, machine learning, LLM-based agents, Codex', }, { icon: Workflow, title: 'Optimization', text: 'Supply chain optimization, mathematical modeling, process design, Microsoft Project', }, { icon: BriefcaseBusiness, title: 'ERP & Systems', text: 'SAP, Odoo, OpenProd, ServiceNow', }, ] function App() { return (
MS. CV

MONTRÉAL · DATA · BUSINESS · BUILDING

Mohamed Sabri

M.Eng. · Data Scientist & Business Analyst

Industrial engineer turning complex data, operational problems, and ambitious ideas into systems that work in the real world.

Founder · Kairos Founder · DBD
Montréal, QC Français · English · العربية
Mohamed Sabri in a suit
Building now Kairos · DBD · Agora
01

I work where technical depth, business context, and execution meet.

FOUNDER MODE

Building companies, not just projects.

01 Kairos

FOUNDER

Kairos

Booking & workshop operating system

Kairos is an application used by{' '} kotetbarber.ca {' '} to manage bookings and the full workshop operation. Montréal market expansion is now in progress.

Conquering Montréal — in progress
02
DBD — Build Design Deploy

FOUNDER

DBD

Build · Design · Deploy

DBD is an army of builders willing to go full mode on any project. When youth energy and youth power meet wisdom, discipline, and execution, one of the hardest-working forces is born.

dbdsoldiers.com
The DBD Agora is still in development

EXPERIENCE

From analysis to deployment.

I work across data, operations, business analysis, and technical implementation.

{experience.map((item) => (

{item.role}

{item.company} · {item.place}

{item.period}
    {item.bullets.map((bullet) => (
  • {bullet}
  • ))}
))}
Mohamed Sabri at graduation

EDUCATION

Industrial engineering, with a builder’s mindset.

Professional Master’s in Industrial Engineering — Value-Added Production Polytechnique Montréal · 2025
Master’s in Industrial Engineering École nationale des sciences appliquées d’El Jadida · 2022

SELECTED WORK

Systems, models, and provincial-scale data.

01

CERIU · QUÉBEC

PIEMQ 2025

Contributed to the provincial portrait of Québec water infrastructure through municipal-data import, processing, analysis, and final reporting.

02

MACHINE LEARNING

Theoretical service life

Analyzed the gap between theoretical and estimated pipe service life and developed ML models to assess the effect on annual investment costs at provincial scale.

TOOLKIT

Technical depth. Business context.

{skills.map(({ icon: Icon, title, text }) => (

{title}

{text}

))}
Microsoft / LinkedIn · Business Analysis HackerRank · SQL (Advanced) HackerRank · Software Engineer Sustainable Supply Chain

CONTACT

Have a hard problem?
Build it properly.

Data, product, process, automation, or deployment — reach out.

Email me +1 438 866 0069
) } createRoot(document.getElementById('root')).render()