-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
210 lines (182 loc) · 6.32 KB
/
index.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ORATIS</title>
<meta name="description" content="ORATIS - Un groupe de développement créatif, innovant, offrant des solutions technologiques avancées, dont des projets comme Oratis AI, Keyscapes, et BitsDefender.">
<meta property="og:title" content="ORATIS - Groupe de Développement">
<meta property="og:description" content="Explorez les projets du groupe de développement ORATIS : Oratis AI, Keyscapes, et BitsDefender. Technologie, innovation et créativité au service des utilisateurs.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.oratis.fr">
<meta property="og:image" content="https://www.oratis.fr/assets/oratis.png">
<link rel="icon" type="image/png" href="assets/oratis.png" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f9;
}
header {
background: linear-gradient(90deg, #4CAF50, #2E7D32);
color: white;
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
gap: 1.5rem;
}
.nav-links li a {
color: white;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease-in-out;
}
.nav-links li a:hover {
color: #c8f7c5;
}
.hero {
text-align: center;
padding: 5rem 2rem;
background: linear-gradient(45deg, #4CAF50, #81C784);
color: white;
clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
}
.btn {
display: inline-block;
background: white;
color: #4CAF50;
padding: 0.75rem 1.5rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
border-radius: 25px;
transition: all 0.3s ease;
}
.btn:hover {
background: #4CAF50;
color: white;
transform: scale(1.1);
}
section {
padding: 3rem 1.5rem;
max-width: 1200px;
margin: auto;
}
.projects {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
justify-items: center;
}
.project-card {
background: white;
border-radius: 10px;
padding: 2rem;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.project-card h3 {
font-size: 1.8rem;
color: #4CAF50;
margin-bottom: 1rem;
}
.project-card p {
color: #555;
}
footer {
text-align: center;
padding: 1rem;
background: #2E7D32;
color: white;
margin-top: 2rem;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
background: #4CAF50;
border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
background: #81C784;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">ORATIS</div>
<ul class="nav-links">
<li><a href="#about">À propos</a></li>
<li><a href="#projects">Projets</a></li>
<li><a href="https://www.oratis.fr/docs">Documentation</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>ORATIS</h1>
<p>Un groupe de développement créatif, innovant, au service de la technologie et des utilisateurs.</p>
</section>
<section id="about">
<h2>À propos</h2>
<p>ORATIS est un groupe de développement dédié à la création de solutions technologiques avancées. Notre mission est d'innover et de proposer des outils modernes répondant aux besoins de nos clients.</p>
</section>
<section id="projects" class="projects">
<h2>Nos Projets</h2>
<div class="project-card">
<h3><a href="https://github.com/KucoDEV/Oratis">Oratis AI</a></h3>
<p>Un pipeline complet pour la reconnaissance vocale automatique, intégrant prétraitement, extraction des caractéristiques, entraînement de modèle et évaluation.</p>
</div>
<div class="project-card">
<h3><a href="https://discord.gg/NskzPnm5nq">Keyscapes</a></h3>
<p>Un bot Discord pour des escape games interactifs, offrant des énigmes captivantes et des scénarios immersifs pour les utilisateurs.</p>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Pour toute information, contactez-nous à <a href="mailto:[email protected]">[email protected]</a> ou visitez notre <a href="https://github.com/KucoDEV/Oratis">GitHub</a>.</p>
</section>
</main>
<footer>
<p>© 2024 ORATIS - Tous droits réservés.</p>
</footer>
</body>
</html>