-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (65 loc) · 1.73 KB
/
index.html
File metadata and controls
69 lines (65 loc) · 1.73 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="0; url=https://magicastudiopro-58132396-9e8ae.web.app/">
<title>Magica Studio Pro</title>
<style>
body {
background: linear-gradient(135deg, #0f172a, #1e293b);
color: #fff;
font-family: "Poppins", Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
overflow: hidden;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5em;
}
p {
color: #cbd5e1;
max-width: 600px;
margin-bottom: 2em;
line-height: 1.5;
}
button {
background: #3b82f6;
color: #fff;
border: none;
padding: 15px 40px;
border-radius: 12px;
font-size: 18px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
button:hover {
background: #2563eb;
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}
footer {
position: absolute;
bottom: 15px;
font-size: 0.9rem;
color: #94a3b8;
}
</style>
</head>
<body>
<h1>🚀 Magica Studio Pro</h1>
<p>Crée, édite et publie tes projets avec puissance et style.<br>
Télécharge la dernière version ci-dessous 👇</p>
<button onclick="window.location.href='https://github.com/MaxiStudioDev/MagicaStudioPro/releases/latest/download/MagicaStudioPro.zip'">
Télécharger maintenant 📦
</button>
<footer>© 2025 MaxiStudioDev — Tous droits réservés</footer>
</body>
</html>