-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
405 lines (366 loc) · 17.3 KB
/
index.html
File metadata and controls
405 lines (366 loc) · 17.3 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyrex</title>
<link href="cyrex.png" rel="icon" />
<meta name="description" content="Cyrex est un studio de développement qui conçoit des expériences interactives et immersives pour les entreprises et les créateurs." />
<meta name="keywords" content="cyrex, studio, développement, expériences interactives, expériences immersives, entreprises, créateurs" />
<meta name="author" content="LoupesDEV" />
<meta name="theme-color" content="#181818" />
<meta property="og:title" content="Cyrex" />
<meta property="og:description" content="Cyrex est un studio de développement qui conçoit des expériences interactives et immersives pour les entreprises et les créateurs." />
<meta property="og:image" content="https://www.cyrex.fr/cyrex.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.cyrex.fr/" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
:root {
/* Couleurs adoucies pour éviter l'effet flash */
--bg-main: #f2f2f0;
--bg-alt: #e9e9e7;
--stone-200: #d6d3d1;
--slate-900: #0f172a;
--slate-800: #1e293b;
--accent: #2563eb;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-main);
color: var(--slate-900);
line-height: 1.6;
}
/* Effet de transition au scroll */
.reveal {
opacity: 0;
transform: translateY(20px);
transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
/* Cartes Portfolio Modernes */
.project-card {
background-color: #fcfcfb;
border: 1px solid var(--stone-200);
transition: all 0.4s ease;
}
.project-card:hover {
border-color: var(--slate-900);
transform: translateY(-4px);
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}
/* Navigation Minimaliste */
header {
transition: background 0.3s, padding 0.3s;
}
header.scrolled {
background: rgba(242, 242, 240, 0.9);
backdrop-filter: blur(12px);
padding: 1rem 0;
border-bottom: 1px solid var(--stone-200);
}
.nav-link {
font-size: 0.875rem;
font-weight: 500;
color: #64748b;
transition: color 0.2s;
}
.nav-link:hover {
color: var(--slate-900);
}
/* Custom selection color */
::selection {
background: var(--slate-900);
color: white;
}
</style>
</head>
<body class="antialiased">
<!-- Navigation -->
<header id="header" class="fixed top-0 w-full z-50 py-8">
<div class="container mx-auto px-6 flex justify-between items-center">
<a href="#home" class="flex items-center space-x-2">
<span class="text-xl font-extrabold tracking-tighter">CYREX</span>
</a>
<nav class="hidden md:flex items-center space-x-12">
<a href="#expertise" class="nav-link">Expertise</a>
<a href="#portfolio" class="nav-link">Projets</a>
<a href="#contact" class="nav-link">Contact</a>
<a href="mailto:contact@cyrex.fr"
class="px-5 py-2 bg-slate-900 text-white text-sm rounded hover:bg-slate-700 transition-colors">
Nous parler
</a>
</nav>
<button class="md:hidden" onclick="toggleMenu()">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</header>
<!-- Mobile Menu Overlay -->
<div id="mobile-menu"
class="hidden fixed inset-0 z-40 bg-[#f2f2f0] flex flex-col items-center justify-center space-y-8 text-2xl font-bold">
<button class="absolute top-8 right-8" onclick="toggleMenu()"><i class="fas fa-times"></i></button>
<a href="#expertise" onclick="toggleMenu()">Expertise</a>
<a href="#portfolio" onclick="toggleMenu()">Projets</a>
<a href="#contact" onclick="toggleMenu()">Contact</a>
</div>
<main>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center pt-20 bg-[#ebebe9]">
<div class="container mx-auto px-6">
<div class="max-w-4xl reveal">
<h2 class="text-sm font-bold uppercase tracking-[0.4em] text-slate-400 mb-6">Basé en France</h2>
<h1 class="text-5xl md:text-8xl font-medium tracking-tight mb-10 leading-[1.1]">
Nous développons des outils <span class="italic text-slate-500">performants</span> pour vos ambitions.
</h1>
<div class="flex flex-col md:flex-row gap-8 items-start md:items-center">
<a href="#portfolio" class="px-10 py-5 bg-slate-900 text-white font-bold rounded flex items-center group">
Voir nos réalisations
<i class="fas fa-arrow-right ml-3 group-hover:translate-x-1 transition-transform"></i>
</a>
<p class="text-slate-500 max-w-xs text-sm">
Solutions Fullstack sur-mesure, du site vitrine à l'ERP métier.
</p>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 border-y border-stone-200 bg-[#f2f2f0]">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-12 text-center md:text-left">
<div class="reveal">
<p class="text-3xl font-bold">5</p>
<p class="text-xs uppercase text-slate-400 font-bold tracking-widest mt-2">Solutions livrées</p>
</div>
<div class="reveal" style="transition-delay: 0.1s;">
<p class="text-3xl font-bold">100%</p>
<p class="text-xs uppercase text-slate-400 font-bold tracking-widest mt-2">Disponibilité</p>
</div>
<div class="reveal" style="transition-delay: 0.2s;">
<p class="text-3xl font-bold">48h</p>
<p class="text-xs uppercase text-slate-400 font-bold tracking-widest mt-2">Réactivité</p>
</div>
<div class="reveal" style="transition-delay: 0.3s;">
<p class="text-3xl font-bold">10+</p>
<p class="text-xs uppercase text-slate-400 font-bold tracking-widest mt-2">Piliers tech</p>
</div>
</div>
</div>
</section>
<!-- Expertise Section -->
<section id="expertise" class="py-32 bg-[#f2f2f0]">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row gap-20 items-start mb-24">
<div class="md:w-1/3 reveal">
<h3 class="text-3xl font-bold mb-6">Une approche technique globale.</h3>
<p class="text-slate-500 leading-relaxed">
Nous ne nous contentons pas de coder. Nous analysons vos processus pour créer l'outil qui fera la
différence.
</p>
</div>
<div class="md:w-2/3 grid md:grid-cols-2 gap-4 reveal" style="transition-delay: 0.2s;">
<div class="p-8 bg-[#fcfcfb] border border-stone-200 rounded-lg">
<h4 class="font-bold mb-4 uppercase text-xs tracking-widest text-slate-400">01. Web Showcase</h4>
<p class="text-lg font-medium">Sites Vitrines</p>
<p class="text-sm text-slate-500 mt-4">Design épuré et optimisation SEO pour une image de marque
irréprochable.</p>
</div>
<div class="p-8 bg-slate-900 text-white rounded-lg shadow-xl">
<h4 class="font-bold mb-4 uppercase text-xs tracking-widest opacity-50">02. Interactive</h4>
<p class="text-lg font-medium">Applications Web</p>
<p class="text-sm opacity-70 mt-4">Solutions React réactives pour des besoins métiers interactifs et
complexes.</p>
</div>
<div class="p-8 bg-[#fcfcfb] border border-stone-200 rounded-lg">
<h4 class="font-bold mb-4 uppercase text-xs tracking-widest text-slate-400">03. Enterprise</h4>
<p class="text-lg font-medium">Logiciels de Gestion (ERP)</p>
<p class="text-sm text-slate-500 mt-4">Automatisation de vos flux internes via des progiciels sur-mesure.
</p>
</div>
<div class="p-8 bg-[#fcfcfb] border border-stone-200 rounded-lg">
<h4 class="font-bold mb-4 uppercase text-xs tracking-widest text-slate-400">04. Data</h4>
<p class="text-lg font-medium">Backend & API SQL</p>
<p class="text-sm text-slate-500 mt-4">Architectures de données robustes et APIs performantes.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-32 bg-[#e9e9e7] border-y border-stone-200">
<div class="container mx-auto px-6">
<div class="mb-20 reveal">
<h3 class="text-4xl md:text-6xl font-bold tracking-tight">Nos dernières <br>réalisations.</h3>
</div>
<div class="space-y-12">
<!-- StreamIt -->
<div class="project-card flex flex-col md:flex-row rounded-xl overflow-hidden reveal">
<div class="md:w-1/2 h-[450px]">
<img src="https://github.com/LoupesDEV/StreamIt/blob/main/medias/README/header.png?raw=true"
class="w-full h-full object-cover grayscale hover:grayscale-0 transition-all duration-700"
alt="StreamIt">
</div>
<div class="md:w-1/2 p-12 flex flex-col justify-center">
<span class="text-xs font-bold text-slate-400 uppercase tracking-widest mb-4">Plateforme de
Streaming</span>
<h4 class="text-3xl font-bold mb-6">StreamIt</h4>
<p class="text-slate-500 mb-8 max-w-md">StreamIt propose une expérience de streaming fluide avec un accès
direct aux épisodes et à leurs informations. </p>
<div class="flex gap-4">
<span class="text-xs px-3 py-1 bg-[#f2f2f0] rounded border border-stone-200">HTML / CSS / JS</span>
<span class="text-xs px-3 py-1 bg-[#f2f2f0] rounded border border-stone-200">UI / UX</span>
</div>
</div>
</div>
<!-- LiftIt -->
<div class="project-card flex flex-col md:flex-row-reverse rounded-xl overflow-hidden reveal">
<div class="md:w-1/2 h-[450px]">
<img src="https://github.com/LoupesDEV/LiftIt/blob/main/assets/img/logo.png?raw=true"
class="w-full h-full object-cover grayscale hover:grayscale-0 transition-all duration-700" alt="LiftIt">
</div>
<div class="md:w-1/2 p-12 flex flex-col justify-center">
<span class="text-xs font-bold text-slate-400 uppercase tracking-widest mb-4">Configurateur
SimRacing</span>
<h4 class="text-3xl font-bold mb-6">LiftIt</h4>
<p class="text-slate-500 mb-8 max-w-md">Application web légère pour configurer et estimer un équipement de
simulation de course.</p>
<div class="flex gap-4">
<span class="text-xs px-3 py-1 bg-[#f2f2f0] rounded border border-stone-200">HTML / CSS / JS</span>
<span class="text-xs px-3 py-1 bg-[#f2f2f0] rounded border border-stone-200">UI / UX</span>
</div>
</div>
</div>
<!-- Fermyland -->
<div class="project-card flex flex-col md:flex-row rounded-xl overflow-hidden reveal">
<div class="md:w-1/2 h-[450px]">
<img
src="https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=375,fit=crop,q=95/mp8qX8BQyzuWvWRR/fermyland-logo-petit-png-A1aBgaLBOrFK4xaX.png"
class="w-full h-full object-cover grayscale hover:grayscale-0 transition-all duration-700"
alt="Fermyland">
</div>
<div class="md:w-1/2 p-12 flex flex-col justify-center">
<span class="text-xs font-bold text-slate-400 uppercase tracking-widest mb-4">Booking System</span>
<h4 class="text-3xl font-bold mb-6">Fermyland</h4>
<p class="text-slate-500 mb-8 max-w-md">Système complet de réservation en ligne pour anniversaires
d'enfants.</p>
<div class="flex gap-4">
<span class="text-xs px-3 py-1 bg-[#f2f2f0] rounded border border-stone-200">HTML / CSS / JS</span>
<span class="text-xs px-3 py-1 bg-[#f2f2f0] rounded border border-stone-200">API</span>
<span class="text-xs px-3 py-1 bg-[#f2f2f0] rounded border border-stone-200">PAIEMENT</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-32 bg-slate-900 text-white">
<div class="container mx-auto px-6">
<div class="max-w-4xl reveal">
<h3 class="text-5xl md:text-7xl font-bold mb-12 leading-tight tracking-tight">Démarrons une <br>collaboration.
</h3>
<p class="text-slate-400 text-xl font-light mb-16 max-w-2xl leading-relaxed">
Nous analysons vos besoins sous 48h pour vous proposer une solution technique adaptée à vos objectifs
business.
</p>
<div class="flex flex-col md:flex-row gap-16 md:gap-32">
<div>
<p class="text-xs uppercase tracking-widest font-bold opacity-40 mb-6">Email direct</p>
<a href="mailto:contact@cyrex.fr"
class="text-3xl md:text-4xl font-bold hover:text-blue-400 transition-colors">
contact@cyrex.fr
</a>
</div>
<div>
<p class="text-xs uppercase tracking-widest font-bold opacity-40 mb-6">Localisation</p>
<p class="text-3xl md:text-4xl font-bold">France / Remote</p>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Redesigned Footer -->
<footer class="bg-slate-900 text-slate-500 border-t border-white/5 pt-20 pb-10">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-start mb-16 gap-12">
<div class="md:w-1/3">
<div class="flex items-center space-x-2 mb-6">
<span class="text-2xl font-black tracking-tighter text-white">CYREX</span>
</div>
<p class="text-sm leading-relaxed max-w-xs">
Studio de développement fullstack spécialisé dans la conception d'outils numériques performants et
sur-mesure.
</p>
</div>
<div class="grid grid-cols-2 gap-12 md:gap-24">
<div>
<p class="text-white text-xs font-bold uppercase tracking-widest mb-6">Studio</p>
<ul class="space-y-4 text-sm font-medium">
<li><a href="#expertise" class="hover:text-white transition-colors">Expertise</a></li>
<li><a href="#portfolio" class="hover:text-white transition-colors">Réalisations</a></li>
<li><a href="#contact" class="hover:text-white transition-colors">Contact</a></li>
</ul>
</div>
<div>
<p class="text-white text-xs font-bold uppercase tracking-widest mb-6">Réseaux</p>
<ul class="space-y-4 text-sm font-medium">
<li><a href="https://github.com/CyrexStudio/" class="hover:text-white transition-colors">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/math%C3%A9o-pichot-mo%C3%AFse-b538222a0/" class="hover:text-white transition-colors">LinkedIn</a></li>
<li><a href="https://www.instagram.com/matheo_.pm/" class="hover:text-white transition-colors">Instagram</a></li>
</ul>
</div>
</div>
</div>
<div
class="flex flex-col md:flex-row justify-between items-center pt-8 border-t border-white/5 text-[10px] uppercase tracking-[0.2em] font-bold">
<p>© 2026 Cyrex — Tous droits réservés.</p>
<div class="flex space-x-8 mt-6 md:mt-0">
<a href="mentions-legales.html" class="hover:text-white transition-colors">Mentions légales</a>
<a href="confidentialite.html" class="hover:text-white transition-colors">Confidentialité</a>
</div>
</div>
</div>
</footer>
<script>
// Gestion du scroll reveal
function reveal() {
const reveals = document.querySelectorAll(".reveal");
reveals.forEach(el => {
const windowHeight = window.innerHeight;
const elementTop = el.getBoundingClientRect().top;
const elementVisible = 100;
if (elementTop < windowHeight - elementVisible) {
el.classList.add("active");
}
});
}
// Effet Header au scroll
window.addEventListener("scroll", () => {
const header = document.getElementById("header");
if (window.scrollY > 50) {
header.classList.add("scrolled");
} else {
header.classList.remove("scrolled");
}
reveal();
});
function toggleMenu() {
const menu = document.getElementById("mobile-menu");
menu.classList.toggle("hidden");
document.body.classList.toggle("overflow-hidden");
}
// Initialisation
window.onload = reveal;
</script>
</body>
</html>