HerzaJ commited on
Commit
084c2de
·
verified ·
1 Parent(s): fcafed5

Update public/index.html

Browse files
Files changed (1) hide show
  1. public/index.html +135 -71
public/index.html CHANGED
@@ -3,57 +3,12 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>DashX - API Services</title>
7
- <link rel="icon" type="image/webp" href="/icon.webp">
8
- <meta name="description" content="DashX API provides developers with a powerful and easy-to-use platform to manage, monitor, and integrate multiple REST APIs. Get started with a modern interface, advanced analytics, and seamless API management all in one place.">
9
-
10
  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
11
  <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
12
  <link href="styles.css" rel="stylesheet">
13
- <style>
14
- .navbar {
15
- background: rgba(44, 62, 80, 0.95) !important;
16
- backdrop-filter: blur(10px);
17
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
18
- box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
19
- }
20
-
21
- .navbar-brand {
22
- font-size: 1.5rem;
23
- font-weight: 700;
24
- color: #fff !important;
25
- text-decoration: none;
26
- }
27
-
28
- .navbar-brand i {
29
- color: #e74c3c;
30
- font-size: 1.8rem;
31
- margin-right: 0.5rem;
32
- }
33
-
34
- .nav-link {
35
- color: #ecf0f1 !important;
36
- font-weight: 500;
37
- transition: all 0.3s ease;
38
- padding: 0.5rem 1rem !important;
39
- border-radius: 6px;
40
- margin: 0 0.25rem;
41
- }
42
-
43
- .nav-link:hover {
44
- background: rgba(255, 255, 255, 0.1);
45
- transform: translateY(-1px);
46
- }
47
-
48
- .nav-link.text-danger {
49
- color: #e74c3c !important;
50
- }
51
-
52
- .nav-link.text-danger:hover {
53
- background: rgba(231, 76, 60, 0.1);
54
- color: #ff6b6b !important;
55
- }
56
- </style>
57
  </head>
58
  <body>
59
  <nav class="navbar navbar-expand-lg navbar-dark">
@@ -67,10 +22,16 @@
67
  <div class="collapse navbar-collapse" id="navbarNav">
68
  <ul class="navbar-nav ms-auto">
69
  <li class="nav-item">
70
- <a class="nav-link" href="/dashboard">Dashboard</a>
 
 
 
71
  </li>
72
  <li class="nav-item">
73
- <a class="nav-link" href="/auth">Register</a>
 
 
 
74
  </li>
75
  </ul>
76
  </div>
@@ -79,65 +40,168 @@
79
 
80
  <header class="hero">
81
  <div class="hero-content">
82
- <h1 class="hero-title">Welcome to DashX</h1>
83
- <p class="hero-subtitle">Powerful API services for developers</p>
 
 
 
84
  <div class="hero-buttons">
85
- <a href="/auth" class="btn btn-primary">Get Started</a>
86
- <a href="#features" class="btn btn-secondary">Learn More</a>
 
 
 
 
 
87
  </div>
88
  </div>
89
  </header>
90
 
91
  <section id="features" class="features">
92
  <div class="container">
93
- <h2 class="section-title">Features</h2>
 
 
94
  <div class="features-grid">
95
  <div class="feature-card">
96
- <i class="fas fa-shield-alt feature-icon"></i>
97
- <h3>Cloudflare Bypass</h3>
98
- <p>Bypass Cloudflare Turnstile protection with multiple fallback APIs</p>
99
  </div>
 
100
  <div class="feature-card">
101
- <i class="fas fa-qrcode feature-icon"></i>
102
- <h3>QR Generator</h3>
103
- <p>Generate QR codes for text, URLs, and more with custom sizes</p>
104
  </div>
 
105
  <div class="feature-card">
106
- <i class="fas fa-tachometer-alt feature-icon"></i>
107
- <h3>Rate Limiting</h3>
108
- <p>Built-in rate limiting to prevent spam and ensure fair usage</p>
109
  </div>
 
110
  <div class="feature-card">
111
  <i class="fas fa-key feature-icon"></i>
112
- <h3>API Key Management</h3>
113
- <p>Secure API key system with usage tracking and limits</p>
 
 
 
 
 
 
 
 
 
 
 
 
114
  </div>
115
  </div>
116
  </div>
117
  </section>
118
 
119
- <section class="stats">
120
  <div class="container">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  <div class="stats-grid">
122
  <div class="stat-card">
123
  <div class="stat-number" id="totalUsers">0</div>
124
- <div class="stat-label">Total Users</div>
125
  </div>
126
  <div class="stat-card">
127
  <div class="stat-number" id="totalRequests">0</div>
128
- <div class="stat-label">API Requests</div>
129
  </div>
130
  <div class="stat-card">
131
  <div class="stat-number" id="todayRequests">0</div>
132
- <div class="stat-label">Today's Requests</div>
133
  </div>
134
  </div>
135
  </div>
136
  </section>
137
 
 
 
 
 
 
 
 
 
 
 
 
138
  <footer class="footer">
139
  <div class="container">
140
- <p>&copy; 2025 DashX. All rights reserved.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  </div>
142
  </footer>
143
 
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>DashX - Fast & Reliable API Services</title>
7
+ <link rel="icon" type="image/webp" href="/icon.webp">
8
+ <meta name="description" content="DashX provides lightning-fast, reliable API services for developers. Experience powerful rate limiting, secure API key management, and exceptional performance.">
 
9
  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
10
  <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
11
  <link href="styles.css" rel="stylesheet">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  </head>
13
  <body>
14
  <nav class="navbar navbar-expand-lg navbar-dark">
 
22
  <div class="collapse navbar-collapse" id="navbarNav">
23
  <ul class="navbar-nav ms-auto">
24
  <li class="nav-item">
25
+ <a class="nav-link" href="#features"><i class="fas fa-star"></i> Features</a>
26
+ </li>
27
+ <li class="nav-item">
28
+ <a class="nav-link" href="#stats"><i class="fas fa-chart-line"></i> Stats</a>
29
  </li>
30
  <li class="nav-item">
31
+ <a class="nav-link" href="/dashboard"><i class="fas fa-tachometer-alt"></i> Dashboard</a>
32
+ </li>
33
+ <li class="nav-item">
34
+ <a class="nav-link btn-primary" href="/auth" style="padding: 0.5rem 1.5rem; border-radius: 25px;"><i class="fas fa-rocket"></i> Get Started</a>
35
  </li>
36
  </ul>
37
  </div>
 
40
 
41
  <header class="hero">
42
  <div class="hero-content">
43
+ <div style="display: inline-block; background: linear-gradient(135deg, rgba(255, 168, 168, 0.2), rgba(141, 150, 255, 0.2)); padding: 0.5rem 1.5rem; border-radius: 25px; margin-bottom: 1.5rem; border: 1px solid rgba(255, 168, 168, 0.3);">
44
+ <span style="font-weight: 600; color: var(--text-primary);"><i class="fas fa-bolt"></i> Lightning Fast API Platform</span>
45
+ </div>
46
+ <h1 class="hero-title">Build Faster with DashX</h1>
47
+ <p class="hero-subtitle">Powerful, reliable, and developer-friendly API services designed for modern applications</p>
48
  <div class="hero-buttons">
49
+ <a href="/auth" class="btn btn-primary"><i class="fas fa-rocket"></i> Start Free</a>
50
+ <a href="#features" class="btn btn-secondary"><i class="fas fa-info-circle"></i> Explore Features</a>
51
+ </div>
52
+ <div style="margin-top: 3rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; color: var(--text-secondary); font-size: 0.9rem;">
53
+ <div><i class="fas fa-check-circle" style="color: #8D96FF;"></i> No Credit Card Required</div>
54
+ <div><i class="fas fa-check-circle" style="color: #8D96FF;"></i> Free Tier Available</div>
55
+ <div><i class="fas fa-check-circle" style="color: #8D96FF;"></i> 24/7 Uptime</div>
56
  </div>
57
  </div>
58
  </header>
59
 
60
  <section id="features" class="features">
61
  <div class="container">
62
+ <h2 class="section-title">Why Choose DashX?</h2>
63
+ <p style="text-align: center; color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; margin: -2rem auto 4rem;">Fast, secure, and scalable API infrastructure built for developers who demand excellence</p>
64
+
65
  <div class="features-grid">
66
  <div class="feature-card">
67
+ <i class="fas fa-rocket feature-icon"></i>
68
+ <h3>Lightning Fast Performance</h3>
69
+ <p>Experience blazing-fast response times with our optimized infrastructure. Built for speed and reliability to keep your applications running smoothly.</p>
70
  </div>
71
+
72
  <div class="feature-card">
73
+ <i class="fas fa-shield-halved feature-icon"></i>
74
+ <h3>Enterprise-Grade Security</h3>
75
+ <p>Your data is protected with advanced encryption and secure API key management. Industry-leading security protocols keep your applications safe.</p>
76
  </div>
77
+
78
  <div class="feature-card">
79
+ <i class="fas fa-gauge-high feature-icon"></i>
80
+ <h3>Smart Rate Limiting</h3>
81
+ <p>Intelligent rate limiting prevents abuse while ensuring fair usage. Customizable limits that scale with your application's needs.</p>
82
  </div>
83
+
84
  <div class="feature-card">
85
  <i class="fas fa-key feature-icon"></i>
86
+ <h3>Easy API Key Management</h3>
87
+ <p>Generate, manage, and monitor your API keys effortlessly. Complete control with detailed usage tracking and analytics at your fingertips.</p>
88
+ </div>
89
+
90
+ <div class="feature-card">
91
+ <i class="fas fa-chart-line feature-icon"></i>
92
+ <h3>Real-Time Analytics</h3>
93
+ <p>Track your API usage with comprehensive analytics and insights. Make data-driven decisions with detailed performance metrics.</p>
94
+ </div>
95
+
96
+ <div class="feature-card">
97
+ <i class="fas fa-code feature-icon"></i>
98
+ <h3>Developer-Friendly</h3>
99
+ <p>Clean documentation, simple integration, and excellent support. Start building in minutes with our intuitive API design.</p>
100
  </div>
101
  </div>
102
  </div>
103
  </section>
104
 
105
+ <section style="padding: 6rem 0; background: var(--glass-bg); backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);">
106
  <div class="container">
107
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; align-items: center;">
108
+ <div>
109
+ <h2 style="font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Built for Scale</h2>
110
+ <p style="color: var(--text-secondary); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem;">DashX is designed to handle millions of requests with ease. Our robust infrastructure ensures your applications stay online and responsive, no matter the load.</p>
111
+ <ul style="list-style: none; padding: 0;">
112
+ <li style="padding: 0.75rem 0; color: var(--text-primary); display: flex; align-items: center; gap: 1rem;">
113
+ <i class="fas fa-check-circle" style="color: #8D96FF; font-size: 1.2rem;"></i>
114
+ <span><strong>99.9% Uptime Guarantee</strong></span>
115
+ </li>
116
+ <li style="padding: 0.75rem 0; color: var(--text-primary); display: flex; align-items: center; gap: 1rem;">
117
+ <i class="fas fa-check-circle" style="color: #8D96FF; font-size: 1.2rem;"></i>
118
+ <span><strong>Auto-scaling Infrastructure</strong></span>
119
+ </li>
120
+ <li style="padding: 0.75rem 0; color: var(--text-primary); display: flex; align-items: center; gap: 1rem;">
121
+ <i class="fas fa-check-circle" style="color: #8D96FF; font-size: 1.2rem;"></i>
122
+ <span><strong>Global CDN Network</strong></span>
123
+ </li>
124
+ <li style="padding: 0.75rem 0; color: var(--text-primary); display: flex; align-items: center; gap: 1rem;">
125
+ <i class="fas fa-check-circle" style="color: #8D96FF; font-size: 1.2rem;"></i>
126
+ <span><strong>Real-time Monitoring</strong></span>
127
+ </li>
128
+ </ul>
129
+ </div>
130
+ <div style="text-align: center;">
131
+ <i class="fas fa-server" style="font-size: 15rem; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.3;"></i>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </section>
136
+
137
+ <section id="stats" class="stats">
138
+ <div class="container">
139
+ <h2 class="section-title">Trusted by Developers Worldwide</h2>
140
+ <p style="text-align: center; color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; margin: -2rem auto 4rem;">Join thousands of developers building amazing applications with DashX</p>
141
+
142
  <div class="stats-grid">
143
  <div class="stat-card">
144
  <div class="stat-number" id="totalUsers">0</div>
145
+ <div class="stat-label">Active Developers</div>
146
  </div>
147
  <div class="stat-card">
148
  <div class="stat-number" id="totalRequests">0</div>
149
+ <div class="stat-label">API Requests Served</div>
150
  </div>
151
  <div class="stat-card">
152
  <div class="stat-number" id="todayRequests">0</div>
153
+ <div class="stat-label">Requests Today</div>
154
  </div>
155
  </div>
156
  </div>
157
  </section>
158
 
159
+ <section style="padding: 6rem 0; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border);">
160
+ <div class="container" style="text-align: center;">
161
+ <h2 style="font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Ready to Get Started?</h2>
162
+ <p style="color: var(--text-secondary); font-size: 1.2rem; max-width: 600px; margin: 0 auto 2.5rem;">Join DashX today and experience the power of fast, reliable API services. No credit card required.</p>
163
+ <div style="display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;">
164
+ <a href="/auth" class="btn btn-primary" style="font-size: 1.1rem; padding: 1rem 2.5rem;"><i class="fas fa-rocket"></i> Start Building Now</a>
165
+ <a href="/dashboard" class="btn btn-info" style="font-size: 1.1rem; padding: 1rem 2.5rem;"><i class="fas fa-tachometer-alt"></i> View Dashboard</a>
166
+ </div>
167
+ </div>
168
+ </section>
169
+
170
  <footer class="footer">
171
  <div class="container">
172
+ <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; text-align: left;">
173
+ <div>
174
+ <h4 style="font-weight: 700; margin-bottom: 1rem; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;"><i class="fas fa-bolt"></i> DashX</h4>
175
+ <p style="color: var(--text-secondary); font-size: 0.9rem;">Fast, reliable, and secure API services for modern developers.</p>
176
+ </div>
177
+ <div>
178
+ <h5 style="font-weight: 600; margin-bottom: 1rem; color: var(--text-primary);">Product</h5>
179
+ <ul style="list-style: none; padding: 0;">
180
+ <li style="margin-bottom: 0.5rem;"><a href="#features" style="color: var(--text-secondary); text-decoration: none; transition: color 0.3s;">Features</a></li>
181
+ <li style="margin-bottom: 0.5rem;"><a href="/dashboard" style="color: var(--text-secondary); text-decoration: none; transition: color 0.3s;">Dashboard</a></li>
182
+ <li style="margin-bottom: 0.5rem;"><a href="/auth" style="color: var(--text-secondary); text-decoration: none; transition: color 0.3s;">Get Started</a></li>
183
+ </ul>
184
+ </div>
185
+ <div>
186
+ <h5 style="font-weight: 600; margin-bottom: 1rem; color: var(--text-primary);">Resources</h5>
187
+ <ul style="list-style: none; padding: 0;">
188
+ <li style="margin-bottom: 0.5rem;"><a href="#" style="color: var(--text-secondary); text-decoration: none; transition: color 0.3s;">Documentation</a></li>
189
+ <li style="margin-bottom: 0.5rem;"><a href="#" style="color: var(--text-secondary); text-decoration: none; transition: color 0.3s;">API Reference</a></li>
190
+ <li style="margin-bottom: 0.5rem;"><a href="#" style="color: var(--text-secondary); text-decoration: none; transition: color 0.3s;">Support</a></li>
191
+ </ul>
192
+ </div>
193
+ <div>
194
+ <h5 style="font-weight: 600; margin-bottom: 1rem; color: var(--text-primary);">Connect</h5>
195
+ <div style="display: flex; gap: 1rem;">
196
+ <a href="#" style="color: var(--text-secondary); font-size: 1.5rem; transition: color 0.3s;"><i class="fab fa-github"></i></a>
197
+ <a href="#" style="color: var(--text-secondary); font-size: 1.5rem; transition: color 0.3s;"><i class="fab fa-discord"></i></a>
198
+ <a href="#" style="color: var(--text-secondary); font-size: 1.5rem; transition: color 0.3s;"><i class="fab fa-twitter"></i></a>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ <div style="border-top: 1px solid var(--glass-border); padding-top: 2rem; text-align: center;">
203
+ <p>&copy; 2025 DashX. All rights reserved. Built with <i class="fas fa-heart" style="color: #FFA8A8;"></i> for developers</p>
204
+ </div>
205
  </div>
206
  </footer>
207