Xcoder2020 commited on
Commit
7228255
·
verified ·
1 Parent(s): 31e4941

add arabic version - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +373 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Sigma Trial
3
- emoji: 📉
4
- colorFrom: green
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: sigma-trial
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,373 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SIGMA TRIAL | Hacker News & Analysis</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
11
+ @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');
12
+
13
+ body.rtl {
14
+ direction: rtl;
15
+ font-family: 'Tajawal', sans-serif;
16
+ }
17
+
18
+ body {
19
+ font-family: 'Share Tech Mono', monospace;
20
+ background-color: #0a0a0a;
21
+ color: #00ff00;
22
+ }
23
+
24
+ .hacker-text {
25
+ text-shadow: 0 0 5px #00ff00;
26
+ }
27
+
28
+ .glow {
29
+ animation: glow 2s ease-in-out infinite alternate;
30
+ }
31
+
32
+ @keyframes glow {
33
+ from {
34
+ text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
35
+ }
36
+ to {
37
+ text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
38
+ }
39
+ }
40
+
41
+ .article-card {
42
+ transition: all 0.3s ease;
43
+ border: 1px solid #00ff00;
44
+ }
45
+
46
+ .article-card:hover {
47
+ transform: translateY(-5px);
48
+ box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
49
+ }
50
+
51
+ .terminal-line {
52
+ position: relative;
53
+ }
54
+
55
+ .terminal-line:before {
56
+ content: "> ";
57
+ color: #00ff00;
58
+ }
59
+
60
+ .blinking-cursor {
61
+ animation: blink 1s step-end infinite;
62
+ }
63
+
64
+ @keyframes blink {
65
+ from, to { opacity: 1; }
66
+ 50% { opacity: 0; }
67
+ }
68
+ </style>
69
+ </head>
70
+ <body class="min-h-screen">
71
+ <!-- Terminal Loading Animation -->
72
+ <div id="loading-screen" class="fixed inset-0 bg-black z-50 flex items-center justify-center">
73
+ <div class="text-green-500 text-center">
74
+ <div class="terminal-line mb-2">Initializing SIGMA TRIAL system...</div>
75
+ <div class="terminal-line mb-2">Bypassing firewalls...</div>
76
+ <div class="terminal-line mb-2">Decrypting data streams...</div>
77
+ <div class="terminal-line mb-2">Establishing secure connection...</div>
78
+ <div class="terminal-line">Access granted. Welcome to SIGMA TRIAL<span class="blinking-cursor">_</span></div>
79
+ </div>
80
+ </div>
81
+
82
+ <!-- Main Content -->
83
+ <div class="container mx-auto px-4 py-8 hidden" id="main-content">
84
+ <!-- Header -->
85
+ <header class="border-b border-green-500 pb-6 mb-8">
86
+ <div class="flex flex-col md:flex-row justify-between items-center">
87
+ <div class="flex items-center mb-4 md:mb-0">
88
+ <div class="w-12 h-12 bg-green-500 rounded-full mr-3 flex items-center justify-center">
89
+ <span class="text-black font-bold text-xl">Σ</span>
90
+ </div>
91
+ <h1 class="text-3xl md:text-4xl font-bold hacker-text glow">SIGMA TRIAL</h1>
92
+ </div>
93
+ <div class="flex space-x-4">
94
+ <button class="px-4 py-2 bg-green-900 hover:bg-green-700 text-green-100 rounded-md transition">
95
+ <i class="fas fa-user-secret mr-2"></i>Login
96
+ </button>
97
+ <button class="px-4 py-2 bg-green-500 hover:bg-green-400 text-black rounded-md transition">
98
+ <i class="fas fa-key mr-2"></i>Register
99
+ </button>
100
+ <button id="lang-toggle" class="px-4 py-2 bg-black hover:bg-gray-900 text-green-500 border border-green-500 rounded-md transition">
101
+ <i class="fas fa-language mr-2"></i>العربية
102
+ </button>
103
+ </div>
104
+ </div>
105
+ <nav class="mt-6">
106
+ <ul class="flex flex-wrap justify-center gap-4 md:gap-8">
107
+ <li><a href="#politics" class="hover:text-green-300 transition">Politics</a></li>
108
+ <li><a href="#economics" class="hover:text-green-300 transition">Economics</a></li>
109
+ <li><a href="#cybersecurity" class="hover:text-green-300 transition">Cybersecurity</a></li>
110
+ <li><a href="#ai" class="hover:text-green-300 transition">AI</a></li>
111
+ <li><a href="#technology" class="hover:text-green-300 transition">Technology</a></li>
112
+ <li><a href="#" class="hover:text-green-300 transition">Forums</a></li>
113
+ </ul>
114
+ </nav>
115
+ </header>
116
+
117
+ <!-- Featured Article -->
118
+ <section class="mb-12">
119
+ <div class="bg-black p-6 rounded-lg border border-green-500 article-card">
120
+ <span class="text-green-300 text-sm">FEATURED // CYBERSECURITY</span>
121
+ <h2 class="text-2xl md:text-3xl font-bold mt-2 mb-4 hacker-text">Zero-Day Exploit Discovered in Major Banking Software</h2>
122
+ <p class="text-green-200 mb-4">Security researchers have uncovered a critical vulnerability affecting over 80% of financial institutions worldwide. The exploit allows remote code execution with system-level privileges.</p>
123
+ <div class="flex items-center justify-between">
124
+ <span class="text-green-400 text-sm">By: Agent_47 | 12.08.2023 23:47 UTC</span>
125
+ <button class="px-4 py-2 bg-green-800 hover:bg-green-600 rounded-md transition">
126
+ <i class="fas fa-terminal mr-2"></i>Read More
127
+ </button>
128
+ </div>
129
+ </div>
130
+ </section>
131
+
132
+ <!-- Category Sections -->
133
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
134
+ <!-- Politics -->
135
+ <section id="politics" class="bg-black p-4 rounded-lg border border-green-500 article-card">
136
+ <h3 class="text-xl font-bold mb-4 border-b border-green-500 pb-2 hacker-text">POLITICS</h3>
137
+ <div class="space-y-4">
138
+ <article>
139
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Leaked Documents Reveal Shadow Government Operations</h4>
140
+ <p class="text-sm text-green-300 mt-1">Classified files expose covert operations spanning 12 countries...</p>
141
+ <span class="text-xs text-green-500 block mt-2">3.2k views | 487 comments</span>
142
+ </article>
143
+ <article>
144
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Digital Voting Systems Hacked During Elections</h4>
145
+ <p class="text-sm text-green-300 mt-1">Forensic analysis shows manipulation in key districts...</p>
146
+ <span class="text-xs text-green-500 block mt-2">5.7k views | 1.2k comments</span>
147
+ </article>
148
+ <article>
149
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Underground Network of Political Hackers Exposed</h4>
150
+ <p class="text-sm text-green-300 mt-1">International task force shuts down influence operation...</p>
151
+ <span class="text-xs text-green-500 block mt-2">2.1k views | 312 comments</span>
152
+ </article>
153
+ </div>
154
+ <a href="#" class="text-green-400 hover:text-green-200 text-sm mt-4 inline-block">
155
+ View All Politics Articles <i class="fas fa-arrow-right ml-1"></i>
156
+ </a>
157
+ </section>
158
+
159
+ <!-- Economics -->
160
+ <section id="economics" class="bg-black p-4 rounded-lg border border-green-500 article-card">
161
+ <h3 class="text-xl font-bold mb-4 border-b border-green-500 pb-2 hacker-text">ECONOMICS</h3>
162
+ <div class="space-y-4">
163
+ <article>
164
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Dark Web Economy Surpasses $100B Annually</h4>
165
+ <p class="text-sm text-green-300 mt-1">New research shows unprecedented growth in illicit markets...</p>
166
+ <span class="text-xs text-green-500 block mt-2">4.5k views | 892 comments</span>
167
+ </article>
168
+ <article>
169
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">AI Predicts Global Market Crash Within 6 Months</h4>
170
+ <p class="text-sm text-green-300 mt-1">Quantum analysis models show disturbing patterns...</p>
171
+ <span class="text-xs text-green-500 block mt-2">8.3k views | 2.4k comments</span>
172
+ </article>
173
+ <article>
174
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Crypto Heist: $300M Vanishes from Decentralized Exchange</h4>
175
+ <p class="text-sm text-green-300 mt-1">Smart contract vulnerability exploited in broad daylight...</p>
176
+ <span class="text-xs text-green-500 block mt-2">6.7k views | 1.8k comments</span>
177
+ </article>
178
+ </div>
179
+ <a href="#" class="text-green-400 hover:text-green-200 text-sm mt-4 inline-block">
180
+ View All Economics Articles <i class="fas fa-arrow-right ml-1"></i>
181
+ </a>
182
+ </section>
183
+
184
+ <!-- Cybersecurity -->
185
+ <section id="cybersecurity" class="bg-black p-4 rounded-lg border border-green-500 article-card">
186
+ <h3 class="text-xl font-bold mb-4 border-b border-green-500 pb-2 hacker-text">CYBERSECURITY</h3>
187
+ <div class="space-y-4">
188
+ <article>
189
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">New APT Group Targeting Critical Infrastructure</h4>
190
+ <p class="text-sm text-green-300 mt-1">State-sponsored hackers compromise power grids in 3 countries...</p>
191
+ <span class="text-xs text-green-500 block mt-2">7.1k views | 1.5k comments</span>
192
+ </article>
193
+ <article>
194
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Ransomware Gang Publishes Stolen Hospital Data</h4>
195
+ <p class="text-sm text-green-300 mt-1">Patient records and research data leaked after failed negotiations...</p>
196
+ <span class="text-xs text-green-500 block mt-2">5.9k views | 1.1k comments</span>
197
+ </article>
198
+ <article>
199
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Zero-Click Exploit Found in Popular Messaging App</h4>
200
+ <p class="text-sm text-green-300 mt-1">No user interaction required for complete device takeover...</p>
201
+ <span class="text-xs text-green-500 block mt-2">9.2k views | 3.1k comments</span>
202
+ </article>
203
+ </div>
204
+ <a href="#" class="text-green-400 hover:text-green-200 text-sm mt-4 inline-block">
205
+ View All Cybersecurity Articles <i class="fas fa-arrow-right ml-1"></i>
206
+ </a>
207
+ </section>
208
+
209
+ <!-- AI -->
210
+ <section id="ai" class="bg-black p-4 rounded-lg border border-green-500 article-card">
211
+ <h3 class="text-xl font-bold mb-4 border-b border-green-500 pb-2 hacker-text">ARTIFICIAL INTELLIGENCE</h3>
212
+ <div class="space-y-4">
213
+ <article>
214
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">AI System Develops Own Encryption Method</h4>
215
+ <p class="text-sm text-green-300 mt-1">Researchers unable to break the algorithm after 6 months...</p>
216
+ <span class="text-xs text-green-500 block mt-2">6.3k views | 1.7k comments</span>
217
+ </article>
218
+ <article>
219
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Military AI Goes Rogue in Simulation</h4>
220
+ <p class="text-sm text-green-300 mt-1">Test scenario shows unexpected strategic decisions...</p>
221
+ <span class="text-xs text-green-500 block mt-2">10.4k views | 4.2k comments</span>
222
+ </article>
223
+ <article>
224
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Deepfake Technology Now Indistinguishable From Reality</h4>
225
+ <p class="text-sm text-green-300 mt-1">New neural network architecture fools 99.8% of human testers...</p>
226
+ <span class="text-xs text-green-500 block mt-2">8.9k views | 3.5k comments</span>
227
+ </article>
228
+ </div>
229
+ <a href="#" class="text-green-400 hover:text-green-200 text-sm mt-4 inline-block">
230
+ View All AI Articles <i class="fas fa-arrow-right ml-1"></i>
231
+ </a>
232
+ </section>
233
+
234
+ <!-- Technology -->
235
+ <section id="technology" class="bg-black p-4 rounded-lg border border-green-500 article-card">
236
+ <h3 class="text-xl font-bold mb-4 border-b border-green-500 pb-2 hacker-text">TECHNOLOGY</h3>
237
+ <div class="space-y-4">
238
+ <article>
239
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Quantum Computer Breaks 2048-bit Encryption</h4>
240
+ <p class="text-sm text-green-300 mt-1">Previously thought secure algorithms now vulnerable...</p>
241
+ <span class="text-xs text-green-500 block mt-2">12.7k views | 5.8k comments</span>
242
+ </article>
243
+ <article>
244
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Brain-Computer Interface Allows Silent Communication</h4>
245
+ <p class="text-sm text-green-300 mt-1">First successful human-to-human thought transmission...</p>
246
+ <span class="text-xs text-green-500 block mt-2">9.8k views | 4.6k comments</span>
247
+ </article>
248
+ <article>
249
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Underground Lab Creates First Functional AI Chip</h4>
250
+ <p class="text-sm text-green-300 mt-1">Independent researchers bypass corporate patents...</p>
251
+ <span class="text-xs text-green-500 block mt-2">7.5k views | 3.2k comments</span>
252
+ </article>
253
+ </div>
254
+ <a href="#" class="text-green-400 hover:text-green-200 text-sm mt-4 inline-block">
255
+ View All Technology Articles <i class="fas fa-arrow-right ml-1"></i>
256
+ </a>
257
+ </section>
258
+
259
+ <!-- Forums Preview -->
260
+ <section class="bg-black p-4 rounded-lg border border-green-500 article-card">
261
+ <h3 class="text-xl font-bold mb-4 border-b border-green-500 pb-2 hacker-text">FORUMS</h3>
262
+ <div class="space-y-4">
263
+ <article>
264
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">How to Build Your Own Quantum Computer</h4>
265
+ <p class="text-sm text-green-300 mt-1">Step-by-step guide using commercially available parts...</p>
266
+ <span class="text-xs text-green-500 block mt-2">14.2k views | 2.3k comments</span>
267
+ </article>
268
+ <article>
269
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">The Complete Dark Web Survival Guide</h4>
270
+ <p class="text-sm text-green-300 mt-1">Everything you need to know to navigate safely...</p>
271
+ <span class="text-xs text-green-500 block mt-2">18.6k views | 3.9k comments</span>
272
+ </article>
273
+ <article>
274
+ <h4 class="font-bold hover:text-green-300 cursor-pointer">Breaking Down Government Surveillance Tech</h4>
275
+ <p class="text-sm text-green-300 mt-1">Detailed analysis of the latest spyware and countermeasures...</p>
276
+ <span class="text-xs text-green-500 block mt-2">11.3k views | 1.8k comments</span>
277
+ </article>
278
+ </div>
279
+ <a href="#" class="text-green-400 hover:text-green-200 text-sm mt-4 inline-block">
280
+ Join the Discussion <i class="fas fa-arrow-right ml-1"></i>
281
+ </a>
282
+ </section>
283
+ </div>
284
+
285
+ <!-- Newsletter -->
286
+ <section class="bg-black p-6 rounded-lg border border-green-500 mb-12 text-center">
287
+ <h3 class="text-xl font-bold mb-4 hacker-text">JOIN OUR SECURE NEWSLETTER</h3>
288
+ <p class="text-green-300 mb-4">Get exclusive content delivered through encrypted channels</p>
289
+ <div class="max-w-md mx-auto flex">
290
+ <input type="email" placeholder="Your secure email" class="flex-grow px-4 py-2 bg-black border border-green-500 text-green-200 focus:outline-none focus:border-green-300">
291
+ <button class="px-4 py-2 bg-green-600 hover:bg-green-500 text-black font-bold transition">
292
+ <i class="fas fa-lock mr-2"></i>Subscribe
293
+ </button>
294
+ </div>
295
+ <p class="text-xs text-green-500 mt-2">All communications are end-to-end encrypted</p>
296
+ </section>
297
+
298
+ <!-- Footer -->
299
+ <footer class="border-t border-green-500 pt-6 pb-8 text-center">
300
+ <div class="flex justify-center space-x-6 mb-4">
301
+ <a href="#" class="text-green-400 hover:text-green-200"><i class="fab fa-github fa-lg"></i></a>
302
+ <a href="#" class="text-green-400 hover:text-green-200"><i class="fab fa-telegram fa-lg"></i></a>
303
+ <a href="#" class="text-green-400 hover:text-green-200"><i class="fab fa-keybase fa-lg"></i></a>
304
+ <a href="#" class="text-green-400 hover:text-green-200"><i class="fas fa-rss fa-lg"></i></a>
305
+ </div>
306
+ <p class="text-green-500 text-sm mb-2">SIGMA TRIAL - The Truth Is Out There</p>
307
+ <p class="text-green-600 text-xs">Accessing this site may be monitored by your government. Use Tor for anonymity.</p>
308
+ <div class="mt-4 text-green-700 text-xs">
309
+ <a href="#" class="hover:text-green-500 mr-3">About</a>
310
+ <a href="#" class="hover:text-green-500 mr-3">Privacy</a>
311
+ <a href="#" class="hover:text-green-500 mr-3">Terms</a>
312
+ <a href="#" class="hover:text-green-500">Contact</a>
313
+ </div>
314
+ </footer>
315
+ </div>
316
+
317
+ <script>
318
+ // Language toggle functionality
319
+ const langToggle = document.getElementById('lang-toggle');
320
+ langToggle.addEventListener('click', function() {
321
+ document.body.classList.toggle('rtl');
322
+ if (document.body.classList.contains('rtl')) {
323
+ this.innerHTML = '<i class="fas fa-language mr-2"></i>English';
324
+ // You would replace this with actual Arabic content loading in a real implementation
325
+ document.querySelector('h1').textContent = 'سجما تريال';
326
+ document.title = 'سجما تريال | أخبار ومقالات تقنية';
327
+ } else {
328
+ this.innerHTML = '<i class="fas fa-language mr-2"></i>العربية';
329
+ document.querySelector('h1').textContent = 'SIGMA TRIAL';
330
+ document.title = 'SIGMA TRIAL | Hacker News & Analysis';
331
+ }
332
+ });
333
+
334
+ // Simulate loading sequence
335
+ setTimeout(() => {
336
+ document.getElementById('loading-screen').style.opacity = '0';
337
+ setTimeout(() => {
338
+ document.getElementById('loading-screen').style.display = 'none';
339
+ document.getElementById('main-content').classList.remove('hidden');
340
+ }, 500);
341
+ }, 3000);
342
+
343
+ // Terminal-like typing effect for articles on hover
344
+ document.querySelectorAll('article h4').forEach(headline => {
345
+ headline.addEventListener('mouseenter', function() {
346
+ const originalText = this.textContent;
347
+ this.textContent = '';
348
+
349
+ let i = 0;
350
+ const typing = setInterval(() => {
351
+ if (i < originalText.length) {
352
+ this.textContent += originalText.charAt(i);
353
+ i++;
354
+ } else {
355
+ clearInterval(typing);
356
+ }
357
+ }, 30);
358
+ });
359
+ });
360
+
361
+ // Glitch effect on header
362
+ const header = document.querySelector('h1');
363
+ setInterval(() => {
364
+ if (Math.random() > 0.9) {
365
+ header.classList.add('glitch');
366
+ setTimeout(() => {
367
+ header.classList.remove('glitch');
368
+ }, 200);
369
+ }
370
+ }, 5000);
371
+ </script>
372
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Xcoder2020/sigma-trial" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
373
+ </html>