-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
421 lines (387 loc) · 33.5 KB
/
index.html
File metadata and controls
421 lines (387 loc) · 33.5 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0, user-scalable=no">
<title>NodePass - Universal TCP/UDP Tunneling Solution</title>
<meta name="theme-color" content="#131B2C">
<meta name="description" content="NodePass is a secure, efficient TCP/UDP tunneling solution that delivers fast, reliable access across network restrictions using pre-established TLS/TCP connections.">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="./icon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./icon/favicon-16x16.png">
<link rel="manifest" href="./icon/site.webmanifest">
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.11.4/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.11.4/dist/ScrollTrigger.min.js"></script>
</head>
<body class="font-inter bg-gray-900 text-white">
<nav class="fixed top-0 left-0 w-full z-50 transition-all duration-300" id="navbar">
<div class="container mx-auto px-4 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center">
<span class="text-xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-600">NodePass</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#features" class="nav-link">Features</a>
<a href="#architecture" class="nav-link">Architecture</a>
<a href="#documentation" class="nav-link">Documentation</a>
<a href="https://github.com/NodePassProject/nodepass" class="nav-link">Repository</a>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-white focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<div id="mobile-menu" class="md:hidden hidden">
<div class="px-4 py-3 space-y-2 bg-gray-800 shadow-lg">
<a href="#features" class="block nav-link py-2">Features</a>
<a href="#architecture" class="block nav-link py-2">Architecture</a>
<a href="#documentation" class="block nav-link py-2">Documentation</a>
<a href="https://github.com/NodePassProject/nodepass" class="block nav-link py-2">Repository</a>
</div>
</div>
</nav>
<section id="hero" class="relative pt-24 min-h-screen flex items-center justify-center overflow-hidden">
<div class="absolute inset-0 z-0 hero-background"></div>
<div class="grid-overlay"></div>
<div id="particles-js" class="absolute inset-0 z-1"></div>
<div class="container mx-auto px-4 z-10 text-center">
<div class="logo-container mb-6">
<img src="https://nodepass.eu/assets/np-poster.png" alt="NodePass Logo" class="mx-auto w-full max-w-md glassmorphism rounded-xl">
</div>
<p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-3xl mx-auto hero-description animate__animated animate__fadeIn">NodePass is a secure, efficient TCP/UDP tunneling solution that delivers fast, reliable access across network restrictions using pre-established TLS/TCP connections.</p>
<div class="mt-16 mb-16 glassmorphism rounded-xl p-6 max-w-lg mx-auto shadow-glow">
<div class="relative mb-4 terminal-header">
<div class="flex justify-between items-center">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
</div>
</div>
<div class="mt-4 text-center">
<div class="inline-flex items-center">
<a href="https://github.com/NodePassProject/nodepass" class="primary-btn text-white font-medium rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50" style="width:150px; height:50px; margin-right:10px; display:flex; align-items:center; justify-content:center; padding:0;">
<svg class="w-5 h-5 inline-block mr-2 btn-icon" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"></path>
</svg>
<span>GitHub</span>
</a>
<a href="https://apps.apple.com/us/app/nodepass/id6747930492">
<img src="https://nodepass.eu/assets/appstore.png" width="150" alt="App Store">
</a>
</div>
</div>
</div>
</div>
</section>
<section id="features" class="py-20 relative overflow-hidden">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center text-gradient">Core Features</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="feature-card card-3d glassmorphism rounded-xl p-6 glow-on-hover" data-delay="0">
<div class="icon-container mb-5">
<svg class="w-10 h-10 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">High-Performance Tunnel</h3>
<p class="text-gray-400">Lightweight tunnel implemented in Go, with extremely low latency and high throughput, supporting large-scale concurrent connections.</p>
</div>
<div class="feature-card card-3d glassmorphism rounded-xl p-6 glow-on-hover" data-delay="0.2">
<div class="icon-container mb-5">
<svg class="w-10 h-10 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Three-Layer Architecture</h3>
<p class="text-gray-400">Innovative master, server, and client three-layer architecture, achieving flexible network topology and unified management.</p>
</div>
<div class="feature-card card-3d glassmorphism rounded-xl p-6 glow-on-hover" data-delay="0.4">
<div class="icon-container mb-5">
<svg class="w-10 h-10 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Multi-Protocol Support</h3>
<p class="text-gray-400">Supports TCP and UDP protocols, meeting network requirements for different application scenarios, with flexible configuration options.</p>
</div>
<div class="feature-card card-3d glassmorphism rounded-xl p-6 glow-on-hover" data-delay="0.6">
<div class="icon-container mb-5">
<svg class="w-10 h-10 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Secure and Reliable</h3>
<p class="text-gray-400">Built-in TLS encryption and authentication mechanisms ensure the security and integrity of data transmission, preventing unauthorized access.</p>
</div>
<div class="feature-card card-3d glassmorphism rounded-xl p-6 glow-on-hover" data-delay="0.8">
<div class="icon-container mb-5">
<svg class="w-10 h-10 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Easy Configuration</h3>
<p class="text-gray-400">Simple command-line interface without configuration files, making deployment and management simple and efficient, suitable for users of all technical levels.</p>
</div>
<div class="feature-card card-3d glassmorphism rounded-xl p-6 glow-on-hover" data-delay="1">
<div class="icon-container mb-5">
<svg class="w-10 h-10 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 10l-2 1m0 0l-2-1m2 1v2.5M20 7l-2 1m2-1l-2-1m2 1v2.5M14 4l-2-1-2 1M4 7l2-1M4 7l2 1M4 7v2.5M12 21l-2-1m2 1l2-1m-2 1v-2.5M6 18l-2-1v-2.5M18 18l2-1v-2.5"></path>
</svg>
</div>
<h3 class="text-xl font-semibold mb-3">Cross-Platform Compatible</h3>
<p class="text-gray-400">Supports Linux, Windows, macOS, and other operating systems, can be seamlessly deployed and run in various environments.</p>
</div>
</div>
</div>
</section>
<section id="architecture" class="py-20 relative bg-gray-800 bg-opacity-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center demo-title text-gradient">NodePass Architecture</h2>
<div class="architecture-diagram mb-16">
<div class="architecture-container relative mx-auto" style="height: 480px; max-width: 960px;">
<div class="architecture-layer-container relative w-full h-full">
<div class="arch-layer master-layer-top absolute top-0 left-1/2 transform -translate-x-1/2 w-11/12 md:w-3/4 p-5 bg-blue-900 bg-opacity-20 border border-blue-500 rounded-lg shadow-glow" data-node-type="master-top">
<div class="flex items-center mb-3">
<div class="w-3 h-3 bg-blue-500 rounded-full pulse-animation mr-2"></div>
<h3 class="text-xl font-semibold text-blue-400">Master API</h3>
</div>
<div class="flex flex-wrap justify-center gap-4 mt-2">
<div class="flex-1 min-w-[150px] bg-indigo-900 bg-opacity-30 p-3 rounded-lg border border-indigo-500 border-opacity-50">
<div class="flex items-center mb-1">
<div class="w-2 h-2 bg-indigo-500 rounded-full mr-2"></div>
<h4 class="text-sm font-medium text-indigo-300">Server</h4>
</div>
<div class="text-xs text-gray-400">Handles connections and protocol translation</div>
</div>
<div class="flex-1 min-w-[150px] bg-green-900 bg-opacity-30 p-3 rounded-lg border border-green-500 border-opacity-50">
<div class="flex items-center mb-1">
<div class="w-2 h-2 bg-green-500 rounded-full mr-2"></div>
<h4 class="text-sm font-medium text-green-300">Client</h4>
</div>
<div class="text-xs text-gray-400">Establishes and maintains tunnel connections</div>
</div>
</div>
</div>
<div class="arch-layer master-layer-bottom absolute bottom-0 left-1/2 transform -translate-x-1/2 w-11/12 md:w-3/4 p-5 bg-blue-900 bg-opacity-20 border border-blue-500 rounded-lg shadow-glow" data-node-type="master-bottom">
<div class="flex items-center mb-3">
<div class="w-3 h-3 bg-blue-500 rounded-full pulse-animation mr-2"></div>
<h3 class="text-xl font-semibold text-blue-400">Master API</h3>
</div>
<div class="flex flex-wrap justify-center gap-4 mt-2">
<div class="flex-1 min-w-[150px] bg-green-900 bg-opacity-30 p-3 rounded-lg border border-green-500 border-opacity-50">
<div class="flex items-center mb-1">
<div class="w-2 h-2 bg-green-500 rounded-full mr-2"></div>
<h4 class="text-sm font-medium text-green-300">Client</h4>
</div>
<div class="text-xs text-gray-400">Establishes and maintains tunnel connections</div>
</div>
<div class="flex-1 min-w-[150px] bg-indigo-900 bg-opacity-30 p-3 rounded-lg border border-indigo-500 border-opacity-50">
<div class="flex items-center mb-1">
<div class="w-2 h-2 bg-indigo-500 rounded-full mr-2"></div>
<h4 class="text-sm font-medium text-indigo-300">Server</h4>
</div>
<div class="text-xs text-gray-400">Handles connections and protocol translation</div>
</div>
</div>
</div>
<div class="connection-lines absolute inset-0" id="connection-lines"></div>
</div>
</div>
</div>
<div class="glassmorphism rounded-xl p-6 max-w-4xl mx-auto mb-12 shadow-glow">
<h3 class="text-2xl font-semibold mb-4 text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-600">Data Transmission Flow</h3>
<p class="text-gray-300 mb-4">NodePass establishes peer-to-peer bidirectional data flow between instances:</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6">
<div class="bg-gray-800 bg-opacity-50 p-4 rounded-lg border border-blue-500 border-opacity-25">
<h4 class="text-blue-400 font-medium mb-2">Control Channel</h4>
<ul class="list-disc list-inside text-gray-400 space-y-1 text-sm">
<li>Unencrypted TCP connection for signaling</li>
<li>Persistent connection for tunnel lifetime</li>
<li>URL-based signaling protocol</li>
<li>Coordinates connection tunnel establishment</li>
</ul>
</div>
<div class="bg-gray-800 bg-opacity-50 p-4 rounded-lg border border-green-500 border-opacity-25">
<h4 class="text-green-400 font-medium mb-2">Data Channel</h4>
<ul class="list-disc list-inside text-gray-400 space-y-1 text-sm">
<li>Configurable TLS encryption (3 modes)</li>
<li>Created on-demand for each connection</li>
<li>Efficient connection pooling system</li>
<li>Supports both TCP and UDP protocols</li>
</ul>
</div>
</div>
<h4 class="text-xl font-medium mb-3 text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-600">Security Features</h4>
<div class="bg-gray-800 bg-opacity-50 p-4 rounded-lg mb-6">
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="bg-gray-900 p-3 rounded">
<h5 class="text-gray-300 font-medium mb-1">Mode 0</h5>
<p class="text-gray-400 text-sm">Unencrypted data transfer (fastest, least secure)</p>
</div>
<div class="bg-gray-900 p-3 rounded">
<h5 class="text-yellow-300 font-medium mb-1">Mode 1</h5>
<p class="text-gray-400 text-sm">Self-signed certificate encryption (good security, no verification)</p>
</div>
<div class="bg-gray-900 p-3 rounded">
<h5 class="text-green-300 font-medium mb-1">Mode 2</h5>
<p class="text-gray-400 text-sm">Verified certificate encryption (highest security, requires valid certificates)</p>
</div>
</div>
</div>
<p class="text-gray-300">This peer-to-peer architecture allows NodePass to flexibly adapt to various network environments, achieving efficient data transmission between endpoints with enhanced security and protocol translation.</p>
</div>
<div class="mt-16 glassmorphism rounded-xl p-6 max-w-4xl mx-auto shadow-glow">
<div class="flex justify-between items-center mb-4 terminal-header">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
</div>
<div class="terminal-body bg-gray-900 rounded text-sm p-4 overflow-x-auto h-64 overflow-y-auto">
<pre class="text-gray-300 terminal-text" id="terminal-text">
# Start Server
$ nodepass "server://:10101/127.0.0.1:8080?log=debug&tls=1"
# Start Client
$ nodepass "client://server:10101/127.0.0.1:8080?min=128"
# Start Master API
$ nodepass "master://:10101/api?log=debug&tls=1" </pre>
</div>
</div>
</div>
</section>
<section id="documentation" class="py-20 relative">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center resources-title text-gradient">Resources & Documentation</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 resources-links">
<a href="https://github.com/NodePassProject/nodepass/blob/main/docs/installation.md" class="resources-box rounded-xl p-6 block hover:no-underline">
<div class="flex items-center mb-4">
<svg class="w-8 h-8 mr-3 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path>
</svg>
<h3 class="text-xl font-semibold text-white">Installation Guide</h3>
</div>
<p class="text-gray-400">Detailed installation steps and system requirements to help you quickly deploy NodePass.</p>
</a>
<a href="https://github.com/NodePassProject/nodepass/blob/main/docs/api.md" class="resources-box rounded-xl p-6 block hover:no-underline">
<div class="flex items-center mb-4">
<svg class="w-8 h-8 mr-3 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path>
</svg>
<h3 class="text-xl font-semibold text-white">API Documentation</h3>
</div>
<p class="text-gray-400">Detailed description of Restful API for building custom applications and integrations.</p>
</a>
<a href="https://github.com/NodePassProject/nodepass/blob/main/docs/configuration.md" class="resources-box rounded-xl p-6 block hover:no-underline">
<div class="flex items-center mb-4">
<svg class="w-8 h-8 mr-3 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
<h3 class="text-xl font-semibold text-white">Configuration Guide</h3>
</div>
<p class="text-gray-400">Comprehensive explanation of configuration options to help you customize NodePass according to your needs.</p>
</a>
<a href="https://github.com/NodePassProject/nodepass/blob/main/docs/examples.md" class="resources-box rounded-xl p-6 block hover:no-underline">
<div class="flex items-center mb-4">
<svg class="w-8 h-8 mr-3 text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"></path>
</svg>
<h3 class="text-xl font-semibold text-white">Usage Examples</h3>
</div>
<p class="text-gray-400">Common application scenario examples to help you quickly get started and apply to actual projects.</p>
</a>
<a href="https://github.com/NodePassProject/nodepass/blob/main/docs/troubleshooting.md" class="resources-box rounded-xl p-6 block hover:no-underline">
<div class="flex items-center mb-4">
<svg class="w-8 h-8 mr-3 text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"></path>
</svg>
<h3 class="text-xl font-semibold text-white">Troubleshooting</h3>
</div>
<p class="text-gray-400">FAQs and troubleshooting guide to solve problems you may encounter when using NodePass.</p>
</a>
<a href="https://github.com/NodePassProject/nodepass" class="resources-box rounded-xl p-6 block hover:no-underline">
<div class="flex items-center mb-4">
<svg class="w-8 h-8 mr-3 text-purple-400" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"></path>
</svg>
<h3 class="text-xl font-semibold text-white">GitHub Repository</h3>
</div>
<p class="text-gray-400">Visit the GitHub repository to get the latest code, report issues, or contribute code.</p>
</a>
</div>
</div>
</section>
<section class="py-16 bg-gray-800 bg-opacity-50 download-section">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-gradient">Start Using NodePass</h2>
<p class="text-gray-300 mb-8 max-w-2xl mx-auto">Download and deploy NodePass now to experience an efficient and secure network tunnel solution.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="https://github.com/NodePassProject/nodepass/releases" class="primary-btn text-white font-medium py-3 px-8 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50">
<svg class="w-5 h-5 inline-block mr-2 btn-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"></path>
</svg>
<span>Download Latest Version</span>
</a>
<a href="https://github.com/NodePassProject/nodepass/blob/main/docs/installation.md" class="secondary-btn bg-transparent hover:bg-gray-800 text-white font-medium py-3 px-8 rounded-lg focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-opacity-50">
<svg class="w-5 h-5 inline-block mr-2 btn-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path>
</svg>
<span>View Installation Guide</span>
</a>
</div>
</div>
</section>
<footer class="py-10 footer-glassmorphism">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center">
<img src="https://nodepass.eu/assets/nodepass.png" alt="NodePass" class="h-8 mr-3 rounded-xl">
<span class="text-xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-600">NodePass</span>
</div>
<p class="text-gray-400 mt-2">Universal TCP/UDP Tunneling Solution</p>
</div>
<div class="flex space-x-6">
<a href="https://github.com/NodePassProject/nodepass" class="text-gray-400 hover:text-white transition-colors cursor-pointer">
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"></path>
</svg>
</a>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center">
<p class="text-sm text-gray-500">
Copyright (c) 2025 NodePassProject
<a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener noreferrer"
class="hover:text-gray-300 transition-colors ml-2">
<svg class="w-4 h-4 inline mr-1" style="vertical-align: -3px;" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/>
</svg>
CC BY 4.0
</a>
</p>
</div>
</div>
</footer>
<button id="back-to-top" class="fixed bottom-6 right-6 bg-blue-600 hover:bg-blue-700 text-white p-2 rounded-full shadow-lg transition-all duration-300 opacity-0 pointer-events-none z-50">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 10l7-7m0 0l7 7m-7-7v18"></path>
</svg>
</button>
<script src="./scripts.js"></script>
</body>
</html>