-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
267 lines (232 loc) · 9 KB
/
Copy pathabout.html
File metadata and controls
267 lines (232 loc) · 9 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>À propos - HardLink</title>
<link rel="stylesheet" href="global.css">
<style>
.about-container {
max-width: 1000px;
margin: 40px auto;
padding: 40px;
background-color: #1a1f26; /* Raven Black */
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
border: 1px solid #4a4a4a; /* Bordure grise cohérente */
backdrop-filter: blur(10px);
color: #e0e0e0;
}
.about-header {
text-align: center;
margin-bottom: 40px;
border-bottom: 1px solid #4a4a4a;
padding-bottom: 25px;
}
.about-header h1 {
color: #0077b3;
font-size: 3em;
margin: 0;
letter-spacing: 3px;
text-transform: uppercase;
}
.about-header h2 {
color: #888;
font-size: 1.3em;
margin-top: 10px;
font-weight: 400;
}
.about-content {
line-height: 1.8;
color: #e0e0e0;
font-size: 1.1em;
}
.speech-section {
background-color: rgba(0, 119, 179, 0.1);
padding: 30px;
border-left: 5px solid #0077b3;
border-radius: 8px;
margin-bottom: 40px;
font-style: italic;
font-size: 1.2em;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 40px;
}
.feature-item {
background-color: #242b35;
padding: 25px;
border-radius: 12px;
border: 1px solid #3a3a3a;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: flex;
flex-direction: column;
gap: 15px;
}
.feature-item:hover {
transform: translateY(-10px);
border-color: #0077b3;
box-shadow: 0 10px 25px rgba(0, 119, 179, 0.2);
background-color: #2c343f;
}
.feature-item h3 {
color: #0077b3;
margin: 0;
display: flex;
align-items: center;
gap: 12px;
font-size: 1.3em;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
padding-bottom: 12px;
}
.feature-item p {
margin: 0;
color: #b0b0b0;
line-height: 1.6;
font-size: 0.95em;
}
.feature-icon {
font-size: 1.4em;
filter: drop-shadow(0 0 5px rgba(0, 119, 179, 0.5));
}
.tech-highlight {
color: #0077b3;
font-weight: 600;
}
.back-btn-container {
text-align: center;
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid #4a4a4a;
}
.back-btn {
background-color: #0077b3;
color: white;
padding: 14px 40px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: all 0.3s ease;
display: inline-block;
box-shadow: 0 4px 15px rgba(0, 119, 179, 0.3);
}
.back-btn:hover {
background-color: #005f99;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 119, 179, 0.4);
}
#background-slider {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
filter: brightness(0.2); /* Très sombre pour laisser briller le contenu */
}
#background-slider img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}
#background-slider img.active {
opacity: 1;
}
.creator-info {
text-align: center;
margin-top: 10px;
color: #888;
font-size: 0.95em;
letter-spacing: 0.5px;
line-height: 1.6;
}
.creator-contact {
margin-top: 8px;
font-size: 0.9em;
color: #aaa;
}
.creator-contact a {
color: #0077b3;
text-decoration: none;
margin: 0 10px;
}
.creator-contact a:hover {
text-decoration: underline;
}
.creator-name {
color: #0077b3;
font-weight: 700;
}
</style>
</head>
<body class="about-body">
<div id="background-slider">
<img src="img/Fibre.jpg" class="active">
<img src="img/fibre1.jpg">
<img src="img/fibre2.jpg">
<img src="img/fibre3.jpg">
<img src="img/fibre4.jpg">
<img src="img/fibre5.jpg">
</div>
<div class="about-container">
<div class="about-header">
<h1>HARDLINK</h1>
<h2>L'excellence opérationnelle au service des télécommunications</h2>
<div class="creator-info">
Imaginé et Developpé par <span class="creator-name">Mr Badreddine Soualem</span> • CT B.B.Arreridj • 2025
<div class="creator-contact">
<span>📞 Tel : 06.60.37.45.02</span>
<span>📧 Email : <a href="mailto:Badreddine.soualem@at.dz">Badreddine.soualem@at.dz</a></span>
</div>
</div>
</div>
<div class="about-content">
<div class="speech-section">
"HardLink n'est pas seulement un outil de gestion, c'est le système nerveux central d'une infrastructure technique complexes. Conçue pour répondre aux défis par une gestion moderne, la plateforme fusionne l'intelligence logicielle et la précision technique pour offrir une visibilité totale et un contrôle absolu sur la gestion et l'exploitation des equipements de télécommunications."
</div>
<h2 style="color: #0077b3; margin-top: 40px; font-size: 1.6em;">L'Écosystème HardLink</h2>
<div class="features-grid">
<div class="feature-item">
<h3><span class="feature-icon">🛡️</span> Architecture Raven Black</h3>
<p>Une interface <span class="tech-highlight">Dark Mode</span> professionnelle conçue pour minimiser la fatigue visuelle des techniciens tout en offrant un contraste optimal pour l'analyse de données complexes.</p>
</div>
<div class="feature-item">
<h3><span class="feature-icon">⚡</span> Monitoring Temps Réel</h3>
<p>Un <span class="tech-highlight">Dashboard dynamique</span> avec compteurs intelligents qui reflète instantanément la santé du réseau et l'activité des équipes techniques.</p>
</div>
<div class="feature-item">
<h3><span class="feature-icon">📡</span> Maîtrise des Liaisons</h3>
<p>Exploitation avancée des technologies <span class="tech-highlight">STM, Long Wave, E1</span> et Liaisons Optiques avec une traçabilité rigoureuse des raccordements physiques et logiques.</p>
</div>
<div class="feature-item">
<h3><span class="feature-icon">🔍</span> Diagnostic Intelligent</h3>
<p>Gestion optimisée des dérangements permettant d'identifier les pannes critiques et de réduire drastiquement le <span class="tech-highlight">MTTR</span> (Temps Moyen de Rétablissement).</p>
</div>
<div class="feature-item">
<h3><span class="feature-icon">📦</span> Inventaire de Précision</h3>
<p>Suivi complet du cycle de vie des équipements, de l'acquisition à la mise en service sur site, avec documentation technique centralisée.</p>
</div>
<div class="feature-item">
<h3><span class="feature-icon">🔐</span> Sécurité Granulaire</h3>
<p>Contrôle d'accès strict par privilèges et journalisation exhaustive de chaque action pour garantir l'intégrité de l'infrastructure critique.</p>
</div>
</div>
<div class="back-btn-container">
<a href="dashboard.html" class="back-btn">Accéder au Dashboard</a>
</div>
</div>
<footer class="main-footer">
<p>© 2025 HardLink - Tous droits réservés</p>
</footer>
</div>
<script src="background-slider.js"></script>
<script src="js/auth_check.js"></script>
</body>
</html>