-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
855 lines (809 loc) · 33.4 KB
/
index.html
File metadata and controls
855 lines (809 loc) · 33.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<!-- tarteaucitron.js - Cookie consent manager -->
<script src="https://cdn.jsdelivr.net/npm/tarteaucitronjs@1.29.0/tarteaucitron.min.js"></script>
<script type="text/javascript">
tarteaucitron.init({
"privacyUrl": "",
"bodyPosition": "top",
"hashtag": "#tarteaucitron",
"cookieName": "tarteaucitron",
"orientation": "banner",
"groupServices": true,
"showDetailsOnClick": true,
"serviceDefaultState": "wait",
"closePopup": true,
"showIcon": true,
"iconPosition": "BottomRight",
"DenyAllCta": true,
"AcceptAllCta": true,
"highPrivacy": true,
"mandatory": true,
"googleConsentMode": true
});
// Google Analytics 4
tarteaucitron.user.gtagUa = 'G-DQMRX1LCMG';
(tarteaucitron.job = tarteaucitron.job || []).push('gtag');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>KOVELEO - Développeur Senior · Code, Infra & Produit | Votre partenaire technique</title>
<meta name="description" content="Votre plateforme technique vous échappe ? Stéphane SCHMIDELY (KOVELEO) aide les dirigeants à reprendre le contrôle de leur produit technique. Audit, reprise en main, accompagnement stratégique.">
<meta name="keywords" content="CTO freelance, référent technique, lead developer, audit technique, reprise de projet, dette technique, partenaire technique, développeur senior, Code Infra Produit, Paris">
<meta name="author" content="Stéphane SCHMIDELY">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://koveleo.fr/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://koveleo.fr/">
<meta property="og:title" content="KOVELEO - Développeur Senior · Code, Infra & Produit | Votre partenaire technique">
<meta property="og:description" content="Votre plateforme technique vous échappe ? Stéphane SCHMIDELY aide les dirigeants à reprendre le contrôle de leur produit technique. Audit, reprise en main, accompagnement stratégique.">
<meta property="og:image" content="https://koveleo.fr/assets/logo.png">
<meta property="og:image:width" content="500">
<meta property="og:image:height" content="500">
<meta property="og:locale" content="fr_FR">
<meta property="og:site_name" content="KOVELEO">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://koveleo.fr/">
<meta name="twitter:title" content="KOVELEO - Votre partenaire technique · Code, Infra & Produit">
<meta name="twitter:description" content="Votre plateforme technique vous échappe ? Stéphane SCHMIDELY aide les dirigeants à reprendre le contrôle de leur produit technique.">
<meta name="twitter:image" content="https://koveleo.fr/assets/logo.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "KOVELEO",
"legalName": "KOVELEO - Stéphane SCHMIDELY",
"url": "https://koveleo.fr",
"logo": "https://koveleo.fr/assets/logo.png",
"description": "Partenaire technique pour dirigeants. J'aide les TPE, PME et startups à reprendre le contrôle de leur produit technique - features bloquées, plateforme instable, dette technique. Code, Infra & Produit.",
"foundingDate": "2026",
"founder": {
"@type": "Person",
"name": "Stéphane SCHMIDELY",
"jobTitle": "Développeur Senior · Code, Infra & Produit | Partenaire technique",
"url": "https://www.linkedin.com/in/stephane-schmidely/"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"url": "https://koveleo.fr/#contact-me",
"availableLanguage": ["French", "English"]
},
"sameAs": [
"https://www.linkedin.com/in/stephane-schmidely/",
"https://github.com/stephlm2dev",
"https://www.malt.fr/profile/stephlm2dev"
],
"areaServed": {
"@type": "Country",
"name": "France"
},
"knowsAbout": [
"Développement FullStack",
"CTO freelance",
"Référent technique",
"Lead Developer",
"Audit technique",
"Reprise de projet",
"Architecture logicielle",
"Dette technique",
"Accompagnement stratégique",
"JavaScript",
"TypeScript",
"PHP",
"Python",
"Symfony",
"Angular",
"AWS",
"Google Cloud Platform",
"Kubernetes"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Service",
"serviceType": "Développement web et accompagnement technique",
"provider": {
"@type": "Organization",
"name": "KOVELEO"
},
"areaServed": {
"@type": "Country",
"name": "France"
},
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "Services KOVELEO",
"itemListElement": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Reprise en main & diagnostic",
"description": "Audit technique complet, identification des blocages, plan d'action priorisé selon les enjeux business"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Développement & amélioration continue",
"description": "Correction dette technique, nouvelles features, stabilisation, optimisation des performances"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Accompagnement stratégique",
"description": "Conseil architecture, montée en compétence des équipes, choix de la solution adaptée (code, automation, IA)"
}
}
]
}
}
</script>
<link rel="apple-touch-icon" sizes="76x76" href="/assets/favico/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favico/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favico/favicon-16x16.png">
<link rel="manifest" href="/assets/favico/site.webmanifest">
<link rel="mask-icon" href="/assets/favico/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/assets/favico/favicon.ico">
<meta name="trustpilot-one-time-domain-verification-id" content="6eb5948f-58b5-470a-be98-af970e39b801"/>
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/assets/favico/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;600&display=swap">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;600&display=swap">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap">
<!-- UIkit CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/uikit@3.4.1/dist/css/uikit.min.css" />
<link
rel="stylesheet"
href="style.css">
</head>
<body>
<section
id="hello"
class="hero-section uk-section uk-padding uk-flex uk-flex-middle"
uk-height-viewport>
<div class="uk-container uk-container-small">
<img
data-src="assets/logo.png"
width="50"
height="50"
alt="Koveleo Logo"
class="uk-align-center uk-margin-remove-bottom"
uk-img>
<h1 class="uk-heading-medium uk-margin-remove-top uk-text-center">
Stéphane SCHMIDELY - KOVELEO<br>
Partenaire tech pour reprendre le contrôle
</h1>
<p class="uk-text-lead uk-text-center uk-text-muted">
Ton produit tech rame ? Dette technique qui freine ? Features qui n'avancent plus ?
<strong>Je reprends, améliore et fais scaler ton produit sans tout casser. Main dans la main.</strong>
</p>
<div class="uk-flex uk-flex-center uk-margin-medium-top uk-grid-small" uk-grid>
<div>
<a href="#contact-me"
class="uk-button uk-button-primary uk-button-large"
uk-scroll>
Prendre RDV
</a>
</div>
<div>
<a href="#about"
class="uk-button uk-button-default uk-button-large"
uk-scroll>
Découvrir mon approche
</a>
</div>
</div>
<a href="https://www.pexels.com/fr-fr/photo/lumineux-leger-mur-reflet-17679996/"
target="_blank"
rel="noopener noreferrer"
class="photo-credit">
Photo: Declan Sun / Pexels
</a>
</div>
</section>
<section
id="about"
class="uk-section uk-section-muted uk-padding uk-dark"
uk-height-viewport>
<div class="uk-container uk-container-small">
<h2 class="uk-heading-small uk-text-center">
Pourquoi Koveleo ?
</h2>
<p class="uk-text-lead uk-text-center uk-margin-medium-top">
<strong>10 ans</strong> à comprendre le business autant que la technique.<br>
Le pont entre votre produit et vos équipes - <strong>un seul interlocuteur, pas trois profils.</strong>
</p>
<div class="uk-text-center uk-margin-large-top">
<p class="uk-text-small uk-text-uppercase uk-text-muted" style="letter-spacing: 2px;">Pour qui ?</p>
<div class="uk-margin-small-top">
<span class="uk-label uk-label-outline">TPE</span>
<span class="uk-label uk-label-outline">PME</span>
<span class="uk-label uk-label-outline">Startup</span>
</div>
</div>
<div class="uk-grid-match uk-child-width-1-3@m uk-margin-large-top uk-text-center" uk-grid>
<div>
<div class="pillar-card">
<span class="pillar-icon" uk-icon="icon: users; ratio: 2.5" aria-hidden="true"></span>
<p class="pillar-label">Votre interlocuteur</p>
<p class="pillar-value">De confiance,<br>technique et business</p>
</div>
</div>
<div>
<div class="pillar-card pillar-featured">
<span class="pillar-icon" uk-icon="icon: bolt; ratio: 2.5" aria-hidden="true"></span>
<p class="pillar-label">Complexe → Simple</p>
<p class="pillar-value">Les problèmes perçus<br>comme insurmontables</p>
</div>
</div>
<div>
<div class="pillar-card">
<span class="pillar-icon" uk-icon="icon: user; ratio: 2.5" aria-hidden="true"></span>
<p class="pillar-label">L'engagement</p>
<p class="pillar-value">Partenaire,<br>pas exécutant</p>
</div>
</div>
</div>
<div class="uk-flex uk-flex-center uk-margin-large-top">
<a href="https://www.linkedin.com/in/stephane-schmidely/"
target="_blank"
rel="noopener noreferrer"
class="uk-button uk-button-default">
Mon actualité tech sur LinkedIn →
</a>
</div>
</div>
</section>
<section
id="expertise"
class="uk-section uk-section-default uk-padding"
uk-height-viewport>
<div class="uk-container uk-container-expand uk-padding-large">
<h2 class="uk-heading-small uk-text-center">
Ce que je fais
</h2>
<p class="uk-text-medium uk-text-center uk-text-muted uk-margin-medium-bottom">
Trois axes, une seule obsession: que votre produit vous revienne
</p>
<div class="uk-grid-medium uk-grid-match uk-child-width-1-1@s uk-child-width-1-3@m" uk-grid>
<div>
<div class="expertise-card">
<div class="expertise-card-icon">
<span uk-icon="icon: search; ratio: 1.4" aria-hidden="true"></span>
</div>
<h3 class="expertise-card-title">Reprise en main & diagnostic</h3>
<p class="expertise-card-desc">
Audit technique complet, identification des blocages, plan d'action priorisé selon les enjeux business. Vous savez enfin où vous en êtes et quoi faire en priorité.
</p>
<ul class="expertise-card-list">
<li>Audit technique & cartographie</li>
<li>Plan d'action priorisé business</li>
<li>Quick wins identifiés</li>
<li>Recommandations architecture</li>
</ul>
<div class="expertise-card-footer">
<strong>Japan Experience</strong>
<span>De lead dev à CTO · 4 ans</span>
</div>
</div>
</div>
<div>
<div class="expertise-card">
<div class="expertise-card-icon">
<span uk-icon="icon: code; ratio: 1.4" aria-hidden="true"></span>
</div>
<h3 class="expertise-card-title">Développement & amélioration continue</h3>
<p class="expertise-card-desc">
Correction de la dette technique, nouvelles features, stabilisation, optimisation des performances. Votre produit avance, sans tout casser.
</p>
<ul class="expertise-card-list">
<li>Correction dette technique</li>
<li>Nouvelles features</li>
<li>Stabilisation & performances</li>
<li>CI/CD & conteneurisation</li>
</ul>
<div class="expertise-card-footer">
<strong>Orange</strong>
<span>Reprise projet externalisé & remise en qualité</span>
</div>
</div>
</div>
<div>
<div class="expertise-card">
<div class="expertise-card-icon">
<span uk-icon="icon: bolt; ratio: 1.4" aria-hidden="true"></span>
</div>
<h3 class="expertise-card-title">Accompagnement stratégique</h3>
<p class="expertise-card-desc">
Conseil architecture, montée en compétence des équipes, choix de la solution la plus adaptée — code, automation ou IA selon le contexte.
</p>
<ul class="expertise-card-list">
<li>Conseil architecture</li>
<li>Montée en compétence équipes</li>
<li>Choix de la bonne solution</li>
<li>Vision produit & technique</li>
</ul>
<div class="expertise-card-footer">
<strong>Neuroprofiler</strong>
<span>Lead technique · +4 ans</span>
</div>
</div>
</div>
</div>
<div class="uk-flex uk-flex-center uk-margin-large-top">
<a href="#contact-me"
class="uk-button uk-button-primary uk-button-large"
uk-scroll>
Discuter de votre projet
</a>
</div>
</div>
</section>
<section
id="clients"
class="uk-section uk-section-muted uk-padding"
uk-height-viewport>
<div class="uk-container uk-container-small">
<h2 class="uk-heading-small uk-text-center">
Ils m'ont fait confiance
</h2>
<p class="uk-text-medium uk-text-center uk-text-muted">
Des missions longues, du partenariat réel - avec un accès direct aux décideurs.
</p>
<div class="uk-grid-medium uk-grid-match uk-child-width-1-1@s uk-child-width-1-3@m uk-margin-medium-top" uk-grid>
<div>
<div class="client-card">
<div class="client-card-logo">
<img
data-src="assets/logos/japan-experience.png"
width="90"
height="90"
alt="Logo Japan Experience"
uk-img>
<span class="client-card-badge">CTO · Lead Dev</span>
</div>
<div class="client-card-body">
<h3 class="client-card-name">Japan Experience</h3>
<p class="client-card-meta">~90 personnes</p>
<p class="client-card-desc">
Internalisation complète du projet technique, de lead dev à CTO. Reprise en main de la plateforme, reconstruction du lien tech/métier.
</p>
</div>
</div>
</div>
<div>
<div class="client-card">
<div class="client-card-logo">
<img
data-src="assets/logos/neuroprofiler.svg"
width="90"
height="90"
alt="Logo Neuroprofiler"
class="uk-preserve"
uk-svg>
<span class="client-card-badge">Lead technique · +4 ans</span>
</div>
<div class="client-card-body">
<h3 class="client-card-name">Neuroprofiler</h3>
<p class="client-card-meta">~6 personnes</p>
<p class="client-card-desc">
Développement pendant + 4 ans de la plateforme. Pilotage de la refonte complète, gestion directe avec les cofondateurs.
</p>
</div>
</div>
</div>
<div>
<div class="client-card">
<div class="client-card-logo">
<img
data-src="assets/logos/orange.svg"
width="90"
height="90"
alt="Logo Orange"
class="uk-preserve"
uk-svg>
<span class="client-card-badge">Reprise & remise en qualité</span>
</div>
<div class="client-card-body">
<h3 class="client-card-name">Orange</h3>
<p class="client-card-meta">Grand groupe</p>
<p class="client-card-desc">
Reprise d'un projet externalisé, réajustement et remise en qualité. Évolution applicative et mise en place de CI/CD.
</p>
</div>
</div>
</div>
</div>
<div class="uk-margin-large-top">
<blockquote class="uk-text-lead uk-text-center uk-text-muted">
<p>
He is a top-notch specialist and full-stack developer who brings
great benefits to the project. He is very responsible and
enthusiastic about work.
</p>
<footer class="uk-text-small">
<strong>Alena Badzilouskaya</strong>, Freelance QA, Neuroprofiler mission
</footer>
</blockquote>
</div>
<div class="uk-margin-large-top uk-text-center">
<p class="uk-text-small uk-text-uppercase uk-text-muted" style="letter-spacing: 2px;">Autres missions</p>
<div class="uk-flex-center uk-flex-middle uk-child-width-1-3@m uk-margin-small-top" uk-grid>
<div>
<img
data-src="assets/logos/bernardins.png"
width="80"
height="80"
alt="Logo Collège des Bernardins"
class="uk-align-center uk-margin-remove-bottom"
uk-img>
<p class="uk-text-center uk-text-small uk-text-muted">Collège des Bernardins</p>
</div>
<div>
<img
data-src="assets/logos/libon.svg"
width="80"
height="80"
alt="Logo Libon"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small uk-text-muted">Libon</p>
</div>
<div>
<img
data-src="assets/logos/cstar-industries.svg"
width="80"
height="80"
alt="Logo cstar Industries"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small uk-text-muted">cstar Industries</p>
</div>
</div>
</div>
</div>
</section>
<section
id="process"
class="uk-section uk-section-default uk-padding"
uk-height-viewport>
<div class="uk-container uk-container-small">
<h2 class="uk-heading-small uk-text-center">
Comment on travaille ensemble
</h2>
<p class="uk-text-medium uk-text-center uk-text-muted">
Simple, transparent, sans engagement initial
</p>
<div class="timeline uk-margin-large-top">
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<span class="timeline-badge">30 min offertes</span>
<h3>On échange</h3>
<p>Un premier appel pour comprendre votre contexte, vos enjeux, et voir si on est alignés.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<span class="timeline-badge">2 à 4 semaines</span>
<h3>On diagnostique</h3>
<p>On apprend à travailler ensemble, on identifie les premières actions concrètes, et on définit la suite.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="timeline-content">
<span class="timeline-badge">3-6 mois+ · 2-3j/semaine</span>
<h3>On construit dans la durée</h3>
<p>Mission longue en partenariat. Accès direct, échanges réguliers, livraison continue.</p>
</div>
</div>
</div>
<div class="uk-flex uk-flex-center uk-margin-large-top">
<a href="#contact-me"
class="uk-button uk-button-primary uk-button-large"
uk-scroll>
Prendre rendez-vous
</a>
</div>
</div>
</section>
<section
id="tech"
class="uk-section uk-section-muted uk-padding">
<div class="uk-container uk-container-small">
<h2 class="uk-heading-small uk-text-center">
Stack technique
</h2>
<p class="uk-text-medium uk-text-center uk-text-muted">
Vision complète du pipeline: du front au back, de l'architecture à la résolution de bugs critiques.<br>
<strong>Polyvalent, flexible et orienté impact business</strong>
</p>
<div class="uk-flex-center uk-flex-middle uk-grid-match
uk-child-width-1-3 uk-child-width-1-6@m uk-margin-medium-top"
uk-grid>
<div>
<img
data-src="assets/svgporn/javascript.svg"
width="50"
height="50"
alt="Javascript"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">JS/TS</p>
</div>
<div>
<img
data-src="assets/svgporn/php.svg"
width="50"
height="50"
alt="PHP"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">PHP</p>
</div>
<div>
<img
data-src="assets/svgporn/python.svg"
width="50"
height="50"
alt="Python"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">Python</p>
</div>
<div>
<img
data-src="assets/svgporn/angular.svg"
width="50"
height="50"
alt="Angular"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">Angular</p>
</div>
<div>
<img
data-src="assets/svgporn/symfony.svg"
width="50"
height="50"
alt="Symfony"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">Symfony</p>
</div>
<div>
<img
data-src="assets/svgporn/rails.svg"
width="50"
height="50"
alt="Rails"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">Rails</p>
</div>
<div>
<img
data-src="assets/svgporn/postgresql.svg"
width="50"
height="50"
alt="PostgreSQL"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">PostgreSQL</p>
</div>
<div>
<img
data-src="assets/svgporn/aws.svg"
width="50"
height="50"
alt="AWS"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">AWS</p>
</div>
<div>
<img
data-src="assets/svgporn/google-cloud-platform.svg"
width="50"
height="50"
alt="GCP"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">GCP</p>
</div>
<div>
<img
data-src="assets/svgporn/kubernetes.svg"
width="50"
height="50"
alt="Kubernetes"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">Kubernetes</p>
</div>
<div>
<img
data-src="assets/svgporn/gitlab.svg"
width="50"
height="50"
alt="Gitlab"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">Gitlab CI/CD</p>
</div>
<div>
<img
data-src="assets/svgporn/drupal.svg"
width="50"
height="50"
alt="Drupal"
class="uk-preserve uk-align-center uk-margin-remove-bottom"
uk-svg>
<p class="uk-text-center uk-text-small">Drupal</p>
</div>
</div>
</div>
</section>
<section
id="contact-me"
class="uk-section uk-section-default uk-padding uk-dark uk-flex uk-flex-middle"
uk-height-viewport>
<div class="uk-container uk-container-small">
<h2 class="uk-heading-small uk-text-center">
Votre produit mérite mieux
</h2>
<p class="uk-text-lead uk-text-center uk-text-muted uk-margin-medium-top">
Votre produit technique mérite mieux qu'un énième freelance qui code sans comprendre votre business. <strong>Échangeons.</strong>
</p>
<div class="uk-flex uk-flex-center uk-margin-medium-top">
<a href="https://calendar.app.google/WDP4YtX1HMT91tTZA"
target="_blank"
rel="noopener noreferrer"
class="uk-button uk-button-default uk-button-large">
Prendre RDV - Audit gratuit 30min
</a>
</div>
<p class="uk-text-center uk-text-muted uk-margin-medium-top">
Vous pouvez aussi me retrouver sur:
</p>
<div class="uk-text-center" id="lafabriquedunet-badge">
<script src="https://www.lafabriquedunet.fr/agences/badge/koveleo/badge.js?color=dark" defer></script>
</div>
<div class="uk-flex-center uk-flex-middle uk-grid-match
uk-margin-medium-top uk-child-width-1-2 uk-child-width-1-5@m"
uk-grid>
<div>
<a href="https://linkedin.com/in/stephane-schmidely/"
target="_blank"
rel="noopener noreferrer"
class="uk-text-center"
aria-label="Profil LinkedIn de Stéphane Schmidely"
uk-icon="icon: linkedin; ratio: 3">
</a>
<p class="uk-text-center uk-text-small">LinkedIn</p>
</div>
<div>
<a href="https://www.malt.fr/profile/stephlm2dev"
target="_blank"
rel="noopener noreferrer"
class="uk-text-center"
aria-label="Profil Malt de Stéphane Schmidely"
uk-icon="icon: user; ratio: 3">
</a>
<p class="uk-text-center uk-text-small">Malt</p>
</div>
<div>
<a href="https://github.com/stephlm2dev"
target="_blank"
rel="noopener noreferrer"
class="uk-text-center"
aria-label="Profil Github de Stéphane Schmidely"
uk-icon="icon: github; ratio: 3">
</a>
<p class="uk-text-center uk-text-small">Github</p>
</div>
<div>
<a href="assets/cv.pdf"
target="_blank"
rel="noopener noreferrer"
class="uk-text-center"
aria-label="Télécharger le CV de Stéphane Schmidely (PDF)"
uk-icon="icon: file-pdf; ratio: 3">
</a>
<p class="uk-text-center uk-text-small">CV</p>
</div>
</div>
<a href="#hello"
class="uk-icon-button uk-button-default scroll-to-top"
uk-icon="icon: chevron-up; ratio: 2"
aria-label="Retour en haut de page"
uk-scroll>
</a>
</div>
</section>
<!-- Scroll indicator -->
<nav class="scroll-indicator" aria-label="Navigation sections">
<a href="#hello" class="scroll-dot active" data-section="hello"><span class="scroll-dot-label">Accueil</span></a>
<a href="#about" class="scroll-dot" data-section="about"><span class="scroll-dot-label">Pourquoi</span></a>
<a href="#expertise" class="scroll-dot" data-section="expertise"><span class="scroll-dot-label">Expertise</span></a>
<a href="#clients" class="scroll-dot" data-section="clients"><span class="scroll-dot-label">Clients</span></a>
<a href="#process" class="scroll-dot" data-section="process"><span class="scroll-dot-label">Process</span></a>
<a href="#tech" class="scroll-dot" data-section="tech"><span class="scroll-dot-label">Stack</span></a>
<a href="#contact-me" class="scroll-dot" data-section="contact-me"><span class="scroll-dot-label">Contact</span></a>
</nav>
<!-- UIkit JS -->
<script
src="https://cdn.jsdelivr.net/npm/uikit@3.4.1/dist/js/uikit.min.js">
</script>
<script
src="https://cdn.jsdelivr.net/npm/uikit@3.4.1/dist/js/uikit-icons.min.js">
</script>
<script>
(function() {
var dots = document.querySelectorAll('.scroll-dot');
var sections = Array.from(dots).map(function(dot) {
return document.getElementById(dot.dataset.section);
});
var nav = document.querySelector('.scroll-indicator');
var lightSections = ['about', 'expertise', 'clients', 'process', 'tech', 'contact-me'];
function updateActive() {
var scrollY = window.scrollY + window.innerHeight / 3;
var current = 0;
for (var i = 0; i < sections.length; i++) {
if (sections[i] && sections[i].offsetTop <= scrollY) {
current = i;
}
}
dots.forEach(function(dot, i) {
dot.classList.toggle('active', i === current);
});
var currentId = sections[current] ? sections[current].id: '';
nav.classList.toggle('on-light', lightSections.indexOf(currentId) !== -1);
}
var ticking = false;
window.addEventListener('scroll', function() {
if (!ticking) {
requestAnimationFrame(function() {
updateActive();
ticking = false;
});
ticking = true;
}
});
dots.forEach(function(dot) {
dot.addEventListener('click', function(e) {
e.preventDefault();
var target = document.getElementById(dot.dataset.section);
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
}
});
});
updateActive();
})();
</script>
</body>
</html>