-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
480 lines (480 loc) · 33.2 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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<!-- Home Page -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Main meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Page title displayed in the browser tab -->
<title>DART Project - Home</title>
<!-- Main stylesheets -->
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/home.css">
<link rel="stylesheet" href="assets/css/tailwind.min.css">
<link rel="stylesheet" href="assets/css/context-menu.css">
<!-- Favicon for all browsers -->
<link rel="icon" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/favicons/favicon.ico" type="image/x-icon">
<!-- Apple Touch Icons (for iOS home screen bookmarks) -->
<link rel="apple-touch-icon" sizes="57x57" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/apple/apple-icon-180x180.png">
<!-- Favicons for different devices -->
<link rel="icon" type="image/png" sizes="192x192" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/android/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/favicons/favicon-16x16.png">
<!-- Web Manifest -->
<link rel="manifest" href="site-data/site.manifest">
<!-- Windows-specific tiles (for pinned sites in Windows Start menu) -->
<meta name="msapplication-TileColor" content="#4338ca">
<meta name="msapplication-TileImage" content="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/microsoft/ms-icon-144x144.png">
<!-- Defines the color of the browser UI elements -->
<meta name="theme-color" content="#4338ca">
<!-- Open Graph Meta Tags (for social media sharing, mainly Facebook) -->
<meta property="og:title" content="DART Project - Home">
<meta property="og:description" content="A comprehensive security dashboard designed to track and analyze malicious activities across Discord servers. The DART Project provides threat monitoring, advanced analytics to help server owners detect and prevent cyber threats effectively.">
<meta property="og:image" content="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/social-share/The-DART-Project.png">
<meta property="og:url" content="https://thedartproject.github.io/">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags (for better sharing on Twitter) -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="DART Project - Home">
<meta name="twitter:description" content="A comprehensive security dashboard designed to track and analyze malicious activities across Discord servers. The DART Project provides threat monitoring, advanced analytics to help server owners detect and prevent cyber threats effectively.">
<meta name="twitter:image" content="https://raw.githubusercontent.com/TheDARTProject/Website-Images/refs/heads/main/social-share/The-DART-Project.png">
<!-- Google Search Console verification tag -->
<meta name="google-site-verification" content="jXLCp4UE300YXhWH8VI4tAr9jRx3jnuizC_BZ9t961I" />
</head>
<body class="bg-gray-100 texture">
<!-- Sidebar -->
<div id="sidebar" class="sidebar bg-indigo-700">
<div class="sidebar-header">
<button id="closeSidebar" class="close-sidebar bg-indigo-700">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<nav class="sidebar-nav bg-indigo-700">
<!-- Monitoring -->
<h3 class="text-xs font-semibold text-indigo-200 uppercase px-4 pt-4 pb-2">Monitoring</h3>
<ul class="mb-4">
<li>
<a href="pages/dashboard.html" class="sidebar-link hover:bg-indigo-600">Dashboard View</a>
</li>
<li>
<a href="pages/database.html" class="sidebar-link hover:bg-indigo-600">Threat Database</a>
</li>
<li>
<a href="pages/domain-analytics.html" class="sidebar-link hover:bg-indigo-600">Domain Analytics</a>
</li>
<li>
<a href="pages/threat-map.html" class="sidebar-link hover:bg-indigo-600">Global Threat Map</a>
</li>
<li>
<a href="pages/intelligence.html" class="sidebar-link hover:bg-indigo-600">Intelligence Reports</a>
</li>
<li>
<a href="pages/monitor-app.html" class="sidebar-link hover:bg-indigo-600">Official Discord App</a>
</li>
</ul>
<!-- Resources -->
<h3 class="text-xs font-semibold text-indigo-200 uppercase px-4 pt-4 pb-2">Resources</h3>
<ul class="mb-4">
<li>
<a href="pages/info.html" class="sidebar-link hover:bg-indigo-600">Information Center</a>
</li>
<li>
<a href="pages/resources.html" class="sidebar-link hover:bg-indigo-600">Resource Center</a>
</li>
<li>
<a href="pages/scam-awareness.html" class="sidebar-link hover:bg-indigo-600">Scam Awareness</a>
</li>
<li>
<a href="pages/faq.html" class="sidebar-link hover:bg-indigo-600">Frequent Questions</a>
</li>
<li>
<a href="pages/changelog.html" class="sidebar-link hover:bg-indigo-600">Project Changelog</a>
</li>
</ul>
</nav>
</div>
<!-- Sidebar Toggle Button -->
<button id="sidebarToggle" class="sidebar-toggle bg-indigo-700">
<svg xmlns="http://www.w3.org/2000/svg" class=" h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
<!-- Header -->
<nav class="bg-indigo-700 text-white shadow-md">
<div class="header-content">
<div class="container mx-auto flex justify-between items-center">
<!-- Header Title -->
<div>
<a href="index.html" class="block">
<h1 class="text-2xl font-bold flex items-center"> DART Project <span class="text-amber-400 text-xs ml-2 align-top">BETA</span>
</h1>
<p class="text-sm text-gray-200">Tracking Threats, Protecting Communities</p>
</a>
</div>
<!-- Header Buttons -->
<div class="flex items-center space-x-2">
<!-- Theme Button -->
<button id="darkModeToggle" class="p-2 rounded hover:bg-indigo-600" title="Theme Toggle">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z" />
</svg>
</button>
<!-- Info Button -->
<button id="infoButton" class="p-2 rounded hover:bg-indigo-600" title="Info Page">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd" />
</svg>
</button>
<!-- FAQ Button -->
<button id="faqButton" class="p-2 rounded hover:bg-indigo-600" title="FAQ Page">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd" />
</svg>
</button>
</div>
</div>
</div>
</nav>
<!-- Announcement Bar -->
<div id="announcement-bar" class="announcement-bar hidden">
<div class="container mx-auto py-3 px-4">
<div class="flex items-center justify-between">
<!-- Announcement Message -->
<div class="announcement-content">
<p id="announcement-text" class="text-sm md:text-base font-medium"></p>
</div>
<!-- Close Announcement Button -->
<button id="closeAnnouncement" class="ml-4 text-white opacity-70 hover:opacity-100 transition-opacity">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</button>
</div>
</div>
</div>
<!-- Breadcrumbs -->
<div class="breadcrumb-container mt-0.5">
<div class="container mx-auto px-4 py-2">
<nav class="flex" aria-label="Breadcrumb">
<ol class="inline-flex items-center space-x-2">
<!-- Home Breadcrumb -->
<li class="inline-flex items-center">
<a href="index.html" class="inline-flex items-center text-sm font-medium text-gray-700 hover:text-indigo-600">
<svg class="w-4 h-4 mr-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path d="M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z"></path>
</svg> Home </a>
</li>
</ol>
</nav>
</div>
</div>
<!-- Main Content -->
<div class="container mx-auto px-4 py-8">
<div class="max-w-7xl mx-auto">
<!-- Hero Section -->
<div class="flex flex-col lg:flex-row items-center justify-between gap-12 py-12">
<!-- Left Column - Text Content -->
<div class="lg:w-1/2 space-y-8">
<div>
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 leading-tight hero-title">
<span>The DART Project</span>
<span class="beta-tag">BETA</span>
</h1>
<p class="mt-4 text-lg text-gray-600 leading-relaxed dark:text-gray-300"> The Discord Analytics for Risks & Threats Project provides comprehensive monitoring and threat intelligence for Discord communities. Our platform detects, analyzes, and helps mitigate security risks in real-time. </p>
</div>
<!-- Action Buttons -->
<div class="flex flex-col sm:flex-row gap-2">
<a href="pages/dashboard.html" class="btn-primary dark:bg-gray-800 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
<path d="M2 10a8 8 0 018-8v8h8a8 8 0 11-16 0z" />
<path d="M12 2.252A8.014 8.014 0 0117.748 8H12V2.252z" />
</svg> View Dashboard </a>
<a href="pages/database.html" class="btn-primary dark:bg-gray-800 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M4 4a2 2 0 012-2h4.586A2 2 0 0112 2.586L15.414 6A2 2 0 0116 7.414V16a2 2 0 01-2 2H6a2 2 0 01-2-2V4zm2 6a1 1 0 011-1h6a1 1 0 110 2H7a1 1 0 01-1-1zm1 3a1 1 0 100 2h6a1 1 0 100-2H7z" clip-rule="evenodd" />
</svg> Threat Database </a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScSOBMym5zPiURWMfUzhTOv54i6I3M204RiCFt9wczuxadc8g/viewform?usp=dialog" class="btn-primary dark:bg-gray-800 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z" clip-rule="evenodd" />
</svg> Join the Project </a>
</div>
</div>
<!-- Right Column - Illustration -->
<div class="lg:w-1/2">
<div class="dashboard-illustration-container dark:bg-gray-800 dark:border-gray-700">
<a href="pages/dashboard.html">
<img id="dashboard-image" src="https://raw.githubusercontent.com/TheDARTProject/Website-Images/main/site-images/HOME-IMAGE-LIGHT.png" alt="Security Dashboard Illustration" class="w-full h-auto" loading="lazy">
</a>
</div>
</div>
</div>
<!-- Stats Section -->
<div class="py-12 bg-white rounded-xl shadow-sm border border-gray-100 stats-section">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-5">
<!-- Stat 1 - Threats Detected -->
<div class="text-center p-6">
<div id="threats-detected" class="text-4xl font-bold text-indigo-600">Loading...</div>
<div class="mt-2 text-sm font-medium text-gray-500">THREATS DETECTED</div>
</div>
<!-- Stat 2 - Protected Servers -->
<div class="text-center p-6">
<div id="protected-servers" class="text-4xl font-bold text-indigo-600">Loading...</div>
<div class="mt-2 text-sm font-medium text-gray-500">MONITORED SERVERS</div>
</div>
<!-- Stat 3 - Total Members -->
<div class="text-center p-6">
<div id="total-members" class="text-4xl font-bold text-indigo-600">Loading...</div>
<div class="mt-2 text-sm font-medium text-gray-500">PROTECTED MEMBERS</div>
</div>
<!-- Stat 4 - Malicious URLs -->
<div class="text-center p-6">
<div id="malicious-urls" class="text-4xl font-bold text-indigo-600">Loading...</div>
<div class="mt-2 text-sm font-medium text-gray-500">MALICIOUS URLS</div>
</div>
<!-- Stat 5 - Malicious Servers -->
<div class="text-center p-6">
<div id="malicious-servers" class="text-4xl font-bold text-indigo-600">Loading...</div>
<div class="mt-2 text-sm font-medium text-gray-500">MALICIOUS SERVERS</div>
</div>
</div>
</div>
</div>
<!-- Partners Section -->
<div class="py-12">
<div class="text-center mb-12">
<h2 class="text-2xl font-bold text-gray-900">Trusted By Leading Communities</h2>
<p class="mt-2 text-gray-600 max-w-2xl mx-auto">We partner with top Discord communities and projects to provide enhanced security and threat intelligence.</p>
</div>
<div class="partners-carousel-container">
<div class="partners-carousel">
<div class="partners-track flex items-center">
<!-- Partner logos will be inserted here by JavaScript -->
</div>
</div>
</div>
</div>
<!-- Our Goals Section -->
<div class="py-12">
<div class="text-center mb-12">
<h2 class="text-2xl font-bold text-gray-900">Our Core Objectives</h2>
<p class="mt-2 text-gray-600 max-w-2xl mx-auto">The DART Project is built on three fundamental principles that guide our mission</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Goal 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 dark:bg-gray-800 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<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" />
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Threat Intelligence</h3>
<p class="text-gray-600 dark:text-gray-300">Track and categorize malicious activities including compromised accounts, phishing campaigns, and suspicious URLs with our real-time monitoring system and unified processing engine.</p>
</div>
<!-- Goal 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 dark:bg-gray-800 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" />
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Advanced Analytics</h3>
<p class="text-gray-600 dark:text-gray-300">Identify patterns and correlations between different malicious activities with our sophisticated analytics, providing valuable insights for security professionals and researchers.</p>
</div>
<!-- Goal 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 dark:bg-gray-800 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Continuous Protection</h3>
<p class="text-gray-600 dark:text-gray-300">Our continuously updated database provides real-time access to the most current information on emerging threats, attack vectors and vulnerabilities, allowing you to stay ahead of potential risks.</p>
</div>
</div>
</div>
<!-- Quick Actions Section -->
<div class="py-12">
<div class="text-center mb-12">
<h2 class="text-2xl font-bold text-gray-900">Quick Actions</h2>
<p class="mt-2 text-gray-600 max-w-2xl mx-auto">Need immediate assistance? Here are some quick ways to resolve common issues</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Found Yourself in Database Card -->
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 dark:bg-gray-800 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<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 2m-6 9l2 2 4-4" />
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Found Yourself in Our Database?</h3>
<p class="text-gray-600 dark:text-gray-300 mb-4">
If you've discovered your account in our threat database, it likely means your account was compromised at some point. To confirm you're no longer at risk and update your case status:
</p>
<ol class="list-decimal list-inside text-gray-600 dark:text-gray-300 mb-4 space-y-2">
<li>Change your Discord password immediately</li>
<li>Enable two-factor authentication</li>
<li>Revoke any suspicious authorized apps</li>
<li>Contact us to establish proof of recovery</li>
</ol>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSecxrjcXHAIaNWahtXhGPiJcupUNVnkqyZn8qmXvjOX-cZGWA/viewform?usp=dialog" class="btn-primary inline-flex items-center dark:bg-gray-800 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd" />
</svg>
Request Account Review
</a>
</div>
<!-- Report Scam Card -->
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 dark:bg-gray-800 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 dark:text-white mb-2">Got a Scam to Report?</h3>
<p class="text-gray-600 dark:text-gray-300 mb-4">
Help us protect the community by reporting suspicious activity. When reporting, please include:
</p>
<ul class="list-disc list-inside text-gray-600 dark:text-gray-300 mb-4 space-y-2">
<li>Screenshots of the suspicious messages or profiles</li>
<li>Any links involved (don't click them!)</li>
<li>Discord ID of the suspicious account</li>
<li>Description of what happened</li>
<li>Timestamp of when it occurred</li>
</ul>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfGMGTyP6kCr46hvvRwm6ZilJR2xBuTZ2ZZpSBMe3x8wrzaTA/viewform?usp=dialog" class="btn-primary inline-flex items-center dark:bg-gray-800 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z" clip-rule="evenodd" />
</svg>
Report Suspicious Activity
</a>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="py-12 bg-white rounded-xl shadow-sm border border-gray-100 px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold text-gray-900">Ready to Secure Your Community?</h2>
<p class="mt-4 text-gray-600 max-w-2xl mx-auto"> Join the growing network of server owners and security-focused projects who trust the DART Project to protect their communities from malicious activity, scams, and other digital threats. Whether you're running a server or building tools to combat online abuse, we're here to collaborate. </p>
<div class="mt-8">
<a href="https://docs.google.com/forms/d/e/1FAIpQLScSOBMym5zPiURWMfUzhTOv54i6I3M204RiCFt9wczuxadc8g/viewform?usp=dialog" class="btn-primary dark:bg-gray-800 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700"> Get Started Now <svg xmlns="http://www.w3.org/2000/svg" class="ml-2 -mr-1 h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 11H5a1 1 0 110-2h7.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-indigo-800 text-white py-8 shadow-lg">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Footer About -->
<div class="space-y-4">
<div class="flex items-center space-x-2">
<img id="footer-logo" src="https://raw.githubusercontent.com/TheDARTProject/Website-Images/main/favicons/icon-144x144.png" alt="Icon" class="h-8 w-8 text-indigo-300">
<h3 class="text-xl font-bold">The DART Project</h3>
</div>
<p class="text-indigo-100">Tracking Threats, Protecting Communities</p>
<p class="text-sm text-indigo-200">© 2025 SINEWAVE Development. All rights reserved.</p>
</div>
<!-- Footer Links -->
<div class="grid grid-cols-2 gap-4">
<div>
<h4 class="text-lg font-semibold mb-3 text-indigo-300">Resources</h4>
<ul class="space-y-2">
<li>
<a href="pages/dashboard.html" class="text-indigo-100 hover:text-white transition">Dashboard View</a>
</li>
<li>
<a href="pages/monitor-app.html" class="text-indigo-100 hover:text-white transition">Official Monitor App</a>
</li>
<li>
<a href="pages/threat-map.html" class="text-indigo-100 hover:text-white transition">Global Threat Map</a>
</li>
<li>
<a href="pages/domain-analytics.html" class="text-indigo-100 hover:text-white transition">Domains Analysis</a>
</li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-3 text-indigo-300">Legal</h4>
<ul class="space-y-2">
<li>
<a href="legal/privacy-policy.html" class="text-indigo-100 hover:text-white transition">Privacy Policy</a>
</li>
<li>
<a href="legal/terms-of-service.html" class="text-indigo-100 hover:text-white transition">Terms of Service</a>
</li>
<li>
<a href="legal/security.html" class="text-indigo-100 hover:text-white transition">Project Security</a>
</li>
<li>
<a href="legal/code-of-conduct.html" class="text-indigo-100 hover:text-white transition">Code of Conduct</a>
</li>
</ul>
</div>
</div>
<!-- Footer Social -->
<div>
<h4 class="text-lg font-semibold mb-3 text-indigo-300">Connect With Us</h4>
<div class="flex space-x-4 mb-4">
<a href="https://github.com/TheDARTProject" class="bg-indigo-700 hover:bg-indigo-600 text-white p-2 rounded-full transition" aria-label="GitHub">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path 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" />
</svg>
</a>
<a href="https://discord.gg/2nHHHBWNDw" class="bg-indigo-700 hover:bg-indigo-600 text-white p-2 rounded-full transition" aria-label="Discord">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3847-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286z" />
</svg>
</a>
<a href="https://ko-fi.com/thatsinewave" class="bg-indigo-700 hover:bg-indigo-600 text-white p-2 rounded-full transition" aria-label="Support Us">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
</a>
<a href="pages/status.html" class="bg-indigo-700 hover:bg-indigo-600 text-white p-2 rounded-full transition" aria-label="Support Us">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 1L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-4zm0 2.2l7 3.1v5.7c0 4.4-2.8 8.8-7 10-4.2-1.2-7-5.6-7-10V6.3l7-3.1zm-1 5.3v4h2V8.5h-2zm0 6v2h2v-2h-2z" />
</svg>
</a>
</div>
<div class="bg-indigo-900/30 p-4 rounded-lg">
<p class="text-sm text-indigo-100">Have questions or feedback?</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSesh6fzwdKBD-lf-h3nbHJ_1bP92EEbPVHW_MUQrgjuJDRU-w/viewform?usp=header" class="text-white font-medium hover:underline">Contact us</a>
</div>
</div>
</div>
<div class="border-t border-indigo-700/50 mt-8 pt-6 text-center text-sm text-indigo-300">
<p>The Discord Analytics for Risks & Threats Project - Protecting communities since 2024</p>
</div>
</div>
</footer>
<!-- Scripts -->
<!-- Main Script -->
<script src="assets/js/main.js" type="module"></script>
<!-- Utilities Script -->
<script src="assets/js/utils.js" type="module"></script>
<!-- Partners Carousel Script -->
<script src="assets/js/partners.js" type="module"></script>
<!-- Stats Counter Script -->
<script src="assets/js/stats-counter.js" type="module"></script>
<!-- Context Menu Script -->
<script src="assets/js/context-menu.js" type="module"></script>
<!-- Announcements Script -->
<script src="assets/js/announcements.js" type="module"></script>
<!-- Theme Script -->
<script src="assets/js/theme-loader.js" type="module"></script>
</body>
</html>