-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
219 lines (194 loc) · 6.86 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
211
212
213
214
215
216
217
218
219
<html><head><base href="https://ventistudio.fr">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VentiStudio - Accueil</title>
<style>
:root {
--dark-bg: #0f0f14;
--purple: #8e4ec6;
--light-text: #ffffff;
--dark-text: #a9a9b2;
--accent: #ff7edb;
}
body {
font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
background-color: var(--dark-bg);
color: var(--light-text);
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo {
display: flex;
align-items: center;
}
.logo svg {
width: 40px;
height: 40px;
margin-right: 10px;
fill: var(--accent);
}
nav ul {
list-style-type: none;
padding: 0;
display: flex;
gap: 20px;
}
nav ul li a {
color: var(--dark-text);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
nav ul li a:hover, nav ul li a.active {
color: var(--light-text);
}
main {
margin-top: 40px;
}
h1, h2 {
color: var(--accent);
}
.hero {
text-align: center;
padding: 60px 0;
}
.hero h1 {
font-size: 3em;
margin-bottom: 20px;
}
.hero p {
font-size: 1.2em;
max-width: 600px;
margin: 0 auto 30px;
}
.cta-button {
display: inline-block;
padding: 12px 24px;
background-color: var(--purple);
color: var(--light-text);
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #7a3aad;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 60px;
}
.feature {
background: rgba(255,255,255,0.05);
border-radius: 10px;
padding: 30px;
text-align: center;
transition: transform 0.3s ease;
}
.feature:hover {
transform: translateY(-5px);
}
.feature svg {
width: 60px;
height: 60px;
fill: var(--accent);
margin-bottom: 20px;
}
.feature h3 {
margin-top: 0;
}
footer {
text-align: center;
margin-top: 60px;
padding: 20px 0;
border-top: 1px solid rgba(255,255,255,0.1);
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<div class="logo">
<svg viewBox="0 0 24 24">
<path d="M12 2L1 21h22L12 2zm0 3.5L19.5 19h-15L12 5.5z"/>
</svg>
<span>VentiStudio</span>
</div>
<nav>
<ul>
<li><a href="/">Accueil</a></li>
<li><a href="/publish">Contenu Approuvé</a></li>
<li><a href="/wiki">Wiki</a></li>
<li><a href="/music">Musique</a></li>
<li><a href="/network">Réseau</a></li>
<li><a href="/speedtest">Speedtest</a></li>
<li><a href="/proxy">Proxy</a></li>
<li><a href="/pip">Mode Pip</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>Bienvenue sur VentiStudio</h1>
<p>Connectez-vous, créez et partagez dans un espace unique dédié aux passionnés de musique, d'art et de technologie.</p>
<a href="https://discord.gg/vqfvnvbBK8" class="cta-button">Rejoignez-nous</a>
</section>
<section class="features">
<div class="feature">
<svg viewBox="0 0 24 24">
<path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/>
</svg>
<h3>Publiez</h3>
<p>Partagez vos créations, idées et découvertes avec notre communauté passionnée.</p>
</div>
<div class="feature">
<svg viewBox="0 0 24 24">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/>
</svg>
<h3>Wiki</h3>
<p>Explorez et contribuez à notre base de connaissances collaborative sur l'art et la technologie.</p>
</div>
<div class="feature">
<svg viewBox="0 0 24 24">
<path d="M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z"/>
</svg>
<h3>Musique</h3>
<p>Découvrez les dernières créations de VentiStudio et d'autres artistes de notre communauté.</p>
</div>
</section>
</main>
<footer>
<p>© 2024 VentiStudio. Tous droits réservés.</p>
</footer>
</div>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
// Simulating dynamic content loading
setTimeout(() => {
const heroSection = document.querySelector('.hero');
const newParagraph = document.createElement('p');
newParagraph.textContent = "Nouveau ! Découvrez notre nouveau site web.";
newParagraph.style.color = 'var(--accent)';
newParagraph.style.fontWeight = 'bold';
heroSection.insertBefore(newParagraph, heroSection.querySelector('.cta-button'));
}, 2000);
});
</script>
</body>
</html>