Skip to content

Commit 93568e3

Browse files
author
HyperNovaORIG
committed
Add GitHub Pages site
1 parent d32ad85 commit 93568e3

1 file changed

Lines changed: 128 additions & 0 deletions

File tree

docs/index.html

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
<!DOCTYPE html>
2+
<html lang="ru">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta name="description" content="NeStepanZapret — лучший конфиг zapret для Discord, YouTube, Minecraft, Roblox">
7+
<meta property="og:title" content="NeStepanZapret">
8+
<meta property="og:description" content="Лучший конфиг zapret. Discord, YouTube, Minecraft, Roblox — всё работает.">
9+
<meta property="og:image" content="https://raw.githubusercontent.com/HyperNovaORIG/NeStepanZapret/master/social_preview.png">
10+
<title>NeStepanZapret — лучший конфиг zapret</title>
11+
<style>
12+
* { margin: 0; padding: 0; box-sizing: border-box; }
13+
body {
14+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
15+
background: linear-gradient(135deg, #0a0a1a 0%, #0d1117 50%, #0a0a1a 100%);
16+
color: #c9d1d9;
17+
min-height: 100vh;
18+
display: flex;
19+
flex-direction: column;
20+
align-items: center;
21+
justify-content: center;
22+
padding: 20px;
23+
}
24+
.container {
25+
max-width: 800px;
26+
text-align: center;
27+
}
28+
h1 {
29+
font-size: 3em;
30+
background: linear-gradient(135deg, #58a6ff, #bc8cff);
31+
-webkit-background-clip: text;
32+
-webkit-text-fill-color: transparent;
33+
margin-bottom: 10px;
34+
}
35+
.subtitle {
36+
font-size: 1.2em;
37+
color: #8b949e;
38+
margin-bottom: 30px;
39+
}
40+
.features {
41+
display: grid;
42+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
43+
gap: 15px;
44+
margin: 30px 0;
45+
}
46+
.feature {
47+
background: rgba(255,255,255,0.03);
48+
border: 1px solid #30363d;
49+
border-radius: 8px;
50+
padding: 20px;
51+
transition: 0.3s;
52+
}
53+
.feature:hover { border-color: #58a6ff; transform: translateY(-2px); }
54+
.feature .title { color: #58a6ff; font-weight: bold; font-size: 1.1em; }
55+
.feature .desc { color: #8b949e; margin-top: 5px; font-size: 0.9em; }
56+
.btn {
57+
display: inline-block;
58+
background: linear-gradient(135deg, #238636, #2ea043);
59+
color: white;
60+
text-decoration: none;
61+
padding: 12px 30px;
62+
border-radius: 6px;
63+
font-weight: bold;
64+
font-size: 1.1em;
65+
margin-top: 20px;
66+
transition: 0.3s;
67+
}
68+
.btn:hover { transform: scale(1.05); filter: brightness(1.1); }
69+
.btn-outline {
70+
background: transparent;
71+
border: 1px solid #30363d;
72+
margin-left: 10px;
73+
}
74+
.btn-outline:hover { border-color: #58a6ff; }
75+
.contact {
76+
margin-top: 40px;
77+
color: #8b949e;
78+
font-size: 0.9em;
79+
}
80+
.contact a { color: #58a6ff; text-decoration: none; }
81+
.contact a:hover { text-decoration: underline; }
82+
.grid-bg {
83+
position: fixed;
84+
top: 0; left: 0; right: 0; bottom: 0;
85+
background-image:
86+
linear-gradient(rgba(48,54,61,0.1) 1px, transparent 1px),
87+
linear-gradient(90deg, rgba(48,54,61,0.1) 1px, transparent 1px);
88+
background-size: 50px 50px;
89+
z-index: -1;
90+
}
91+
@media (max-width: 600px) {
92+
h1 { font-size: 2em; }
93+
.features { grid-template-columns: 1fr; }
94+
}
95+
</style>
96+
</head>
97+
<body>
98+
<div class="grid-bg"></div>
99+
<div class="container">
100+
<h1>NeStepanZapret</h1>
101+
<p class="subtitle">Лучший конфиг zapret на данный момент</p>
102+
<div class="features">
103+
<div class="feature">
104+
<div class="title">🎮 Discord</div>
105+
<div class="desc">Голос, стриминг, загрузка файлов</div>
106+
</div>
107+
<div class="feature">
108+
<div class="title">▶️ YouTube</div>
109+
<div class="desc">Без лагов, полная скорость</div>
110+
</div>
111+
<div class="feature">
112+
<div class="title">⛏️ Minecraft</div>
113+
<div class="desc">Полная Microsoft/Xbox auth</div>
114+
</div>
115+
<div class="feature">
116+
<div class="title">🔵 Roblox</div>
117+
<div class="desc">Без разрывов</div>
118+
</div>
119+
</div>
120+
<a href="https://github.com/HyperNovaORIG/NeStepanZapret" class="btn">GitHub</a>
121+
<a href="https://github.com/HyperNovaORIG/NeStepanZapret/releases" class="btn btn-outline">Скачать</a>
122+
<div class="contact">
123+
Discord: Onlimatter &nbsp;|&nbsp; Telegram: Unierman<br>
124+
<a href="https://github.com/HyperNovaORIG/NeStepanZapret">github.com/HyperNovaORIG/NeStepanZapret</a>
125+
</div>
126+
</div>
127+
</body>
128+
</html>

0 commit comments

Comments
 (0)