WormGPT128 commited on
Commit
c67dc0f
Β·
verified Β·
1 Parent(s): be29f4b

Build a fully functional and professional mobile trading application named **SmartTradeX** using Flutter for cross-platform compatibility (Android + iOS). The app should feature real-time candlestick charts, price data, and trading tools similar to MetaTrader. πŸ“± App Features: 1. πŸ“Š **Live Candlestick Chart**: - Real-time chart updates - Zoom & scroll gestures - Multiple timeframes (M1, M5, M15, 1H, 1D) - Chart type: Candlestick (like in the image) 2. πŸ“ˆ **Asset Info**: - Pair: Example `EUR/USD` - Live price updates from a real API (e.g., Binance, Alpha Vantage, or custom broker API) - Price displayed at the top (open, high, low, close) 3. πŸ› οΈ **Toolbar Options**: - Timeframe switcher - Drawing tools (trendlines, Fibonacci, etc.) - Indicator list (RSI, MACD, Bollinger Bands) 4. 🧭 **Bottom Navigation**: - Quotes - Chart (current active tab) - Trade (open/close positions) - History (previous trades) - Settings 5. πŸŒ™ **Dark & Light Mode** support 6. 🌐 **Language Support**: - English & Arabic 7. πŸ“‘ **Live Trading Data Integration**: - Connect to a broker or exchange via API - Fetch OHLC (Open, High, Low, Close) data - Handle user authentication and real trades 8. πŸ’Ύ **Offline Mode**: - Cache latest chart data and load when offline --- ### 🧠 Tech Stack Recommendation: - **Frontend**: Flutter - **Chart Library**: `syncfusion_flutter_charts` or `flutter_candlesticks` - **Backend (optional)**: Node.js or Firebase - **API Source**: Binance API, Alpha Vantage, or MetaTrader API (if broker provides access) --- πŸ› οΈ If you want, I can generate a full Flutter app template for this β€” just say **"Start Flutter Project"**. - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +441 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: What
3
- emoji: 🏒
4
- colorFrom: red
5
- colorTo: red
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: what
3
+ emoji: 🐳
4
+ colorFrom: blue
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,441 @@
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>SmartTradeX - Mobile Trading App</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
+ <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom"></script>
11
+ <style>
12
+ .candle-up {
13
+ background-color: #10b981;
14
+ }
15
+ .candle-down {
16
+ background-color: #ef4444;
17
+ }
18
+ .chart-container {
19
+ height: 400px;
20
+ position: relative;
21
+ }
22
+ .timeframe-btn.active {
23
+ background-color: #3b82f6;
24
+ color: white;
25
+ }
26
+ .drawing-tool.active {
27
+ background-color: #e5e7eb;
28
+ }
29
+ .indicator-item.active {
30
+ background-color: #e5e7eb;
31
+ }
32
+ .tab-active {
33
+ color: #3b82f6;
34
+ border-bottom: 2px solid #3b82f6;
35
+ }
36
+ .dark .candle-up {
37
+ background-color: #059669;
38
+ }
39
+ .dark .candle-down {
40
+ background-color: #dc2626;
41
+ }
42
+ .dark .timeframe-btn.active {
43
+ background-color: #1d4ed8;
44
+ }
45
+ .dark .drawing-tool.active {
46
+ background-color: #4b5563;
47
+ }
48
+ .dark .indicator-item.active {
49
+ background-color: #4b5563;
50
+ }
51
+ .dark .tab-active {
52
+ color: #60a5fa;
53
+ border-bottom-color: #60a5fa;
54
+ }
55
+ </style>
56
+ </head>
57
+ <body class="bg-gray-100 dark:bg-gray-900 transition-colors duration-200">
58
+ <div class="max-w-md mx-auto bg-white dark:bg-gray-800 shadow-lg min-h-screen flex flex-col">
59
+ <!-- Header -->
60
+ <header class="p-4 border-b border-gray-200 dark:border-gray-700">
61
+ <div class="flex justify-between items-center">
62
+ <div class="flex items-center">
63
+ <i class="fas fa-chart-line text-blue-500 dark:text-blue-400 text-xl mr-2"></i>
64
+ <h1 class="text-xl font-bold text-gray-800 dark:text-white">SmartTradeX</h1>
65
+ </div>
66
+ <div class="flex items-center space-x-3">
67
+ <button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-gray-700">
68
+ <i class="fas fa-moon dark:hidden text-gray-600"></i>
69
+ <i class="fas fa-sun hidden dark:block text-yellow-300"></i>
70
+ </button>
71
+ <button class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-gray-700">
72
+ <i class="fas fa-language text-gray-600 dark:text-gray-300"></i>
73
+ </button>
74
+ </div>
75
+ </div>
76
+
77
+ <!-- Asset Info -->
78
+ <div class="mt-4">
79
+ <div class="flex justify-between items-center">
80
+ <div>
81
+ <h2 class="text-lg font-semibold text-gray-800 dark:text-white">EUR/USD</h2>
82
+ <p class="text-sm text-gray-500 dark:text-gray-400">Euro / US Dollar</p>
83
+ </div>
84
+ <div class="text-right">
85
+ <p class="text-2xl font-bold text-gray-800 dark:text-white" id="current-price">1.0954</p>
86
+ <p class="text-sm" id="price-change">
87
+ <span class="text-green-500">+0.0024</span>
88
+ <span class="text-green-500">(+0.22%)</span>
89
+ </p>
90
+ </div>
91
+ </div>
92
+
93
+ <div class="grid grid-cols-4 gap-2 mt-3 text-center">
94
+ <div class="bg-gray-100 dark:bg-gray-700 p-2 rounded">
95
+ <p class="text-xs text-gray-500 dark:text-gray-400">Open</p>
96
+ <p class="text-sm font-medium text-gray-800 dark:text-white">1.0930</p>
97
+ </div>
98
+ <div class="bg-gray-100 dark:bg-gray-700 p-2 rounded">
99
+ <p class="text-xs text-gray-500 dark:text-gray-400">High</p>
100
+ <p class="text-sm font-medium text-gray-800 dark:text-white">1.0962</p>
101
+ </div>
102
+ <div class="bg-gray-100 dark:bg-gray-700 p-2 rounded">
103
+ <p class="text-xs text-gray-500 dark:text-gray-400">Low</p>
104
+ <p class="text-sm font-medium text-gray-800 dark:text-white">1.0925</p>
105
+ </div>
106
+ <div class="bg-gray-100 dark:bg-gray-700 p-2 rounded">
107
+ <p class="text-xs text-gray-500 dark:text-gray-400">Close</p>
108
+ <p class="text-sm font-medium text-gray-800 dark:text-white">1.0954</p>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </header>
113
+
114
+ <!-- Main Content -->
115
+ <main class="flex-1 overflow-hidden">
116
+ <!-- Timeframe Selector -->
117
+ <div class="flex overflow-x-auto p-2 space-x-1 bg-gray-50 dark:bg-gray-700">
118
+ <button class="timeframe-btn px-3 py-1 rounded-full text-sm" data-timeframe="1m">1m</button>
119
+ <button class="timeframe-btn px-3 py-1 rounded-full text-sm" data-timeframe="5m">5m</button>
120
+ <button class="timeframe-btn px-3 py-1 rounded-full text-sm active" data-timeframe="15m">15m</button>
121
+ <button class="timeframe-btn px-3 py-1 rounded-full text-sm" data-timeframe="1h">1h</button>
122
+ <button class="timeframe-btn px-3 py-1 rounded-full text-sm" data-timeframe="4h">4h</button>
123
+ <button class="timeframe-btn px-3 py-1 rounded-full text-sm" data-timeframe="1d">1d</button>
124
+ <button class="timeframe-btn px-3 py-1 rounded-full text-sm" data-timeframe="1w">1w</button>
125
+ </div>
126
+
127
+ <!-- Chart Container -->
128
+ <div class="chart-container p-2">
129
+ <canvas id="priceChart"></canvas>
130
+ </div>
131
+
132
+ <!-- Toolbar -->
133
+ <div class="border-t border-b border-gray-200 dark:border-gray-700 p-2">
134
+ <div class="flex justify-between">
135
+ <div class="flex space-x-2 overflow-x-auto">
136
+ <button class="drawing-tool p-2 rounded" data-tool="line">
137
+ <i class="fas fa-slash"></i>
138
+ </button>
139
+ <button class="drawing-tool p-2 rounded" data-tool="horizontal">
140
+ <i class="fas fa-grip-lines"></i>
141
+ </button>
142
+ <button class="drawing-tool p-2 rounded" data-tool="vertical">
143
+ <i class="fas fa-grip-lines-vertical"></i>
144
+ </button>
145
+ <button class="drawing-tool p-2 rounded" data-tool="fibonacci">
146
+ <i class="fas fa-wave-square"></i>
147
+ </button>
148
+ <button class="drawing-tool p-2 rounded" data-tool="rectangle">
149
+ <i class="far fa-square"></i>
150
+ </button>
151
+ </div>
152
+ <button id="indicators-btn" class="p-2 rounded hover:bg-gray-200 dark:hover:bg-gray-700">
153
+ <i class="fas fa-chart-bar"></i>
154
+ </button>
155
+ </div>
156
+
157
+ <!-- Indicators Panel (hidden by default) -->
158
+ <div id="indicators-panel" class="hidden mt-2 p-2 bg-gray-100 dark:bg-gray-700 rounded">
159
+ <div class="grid grid-cols-2 gap-2">
160
+ <button class="indicator-item p-2 text-left rounded" data-indicator="rsi">RSI</button>
161
+ <button class="indicator-item p-2 text-left rounded" data-indicator="macd">MACD</button>
162
+ <button class="indicator-item p-2 text-left rounded" data-indicator="bollinger">Bollinger Bands</button>
163
+ <button class="indicator-item p-2 text-left rounded" data-indicator="sma">SMA</button>
164
+ <button class="indicator-item p-2 text-left rounded" data-indicator="ema">EMA</button>
165
+ <button class="indicator-item p-2 text-left rounded" data-indicator="volume">Volume</button>
166
+ </div>
167
+ </div>
168
+ </div>
169
+
170
+ <!-- Order Panel -->
171
+ <div class="p-4">
172
+ <div class="grid grid-cols-2 gap-4">
173
+ <button class="bg-green-500 hover:bg-green-600 text-white py-3 px-4 rounded-lg font-medium flex items-center justify-center">
174
+ <i class="fas fa-arrow-up mr-2"></i> Buy
175
+ </button>
176
+ <button class="bg-red-500 hover:bg-red-600 text-white py-3 px-4 rounded-lg font-medium flex items-center justify-center">
177
+ <i class="fas fa-arrow-down mr-2"></i> Sell
178
+ </button>
179
+ </div>
180
+
181
+ <div class="mt-4 space-y-3">
182
+ <div>
183
+ <label class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Volume</label>
184
+ <div class="flex">
185
+ <input type="number" value="0.1" min="0.01" step="0.01" class="flex-1 border border-gray-300 dark:border-gray-600 rounded-l-lg px-3 py-2 dark:bg-gray-700 dark:text-white">
186
+ <select class="border border-gray-300 dark:border-gray-600 rounded-r-lg px-2 dark:bg-gray-700 dark:text-white">
187
+ <option>LOT</option>
188
+ <option>%</option>
189
+ </select>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="grid grid-cols-2 gap-3">
194
+ <div>
195
+ <label class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Take Profit</label>
196
+ <input type="number" value="1.1000" step="0.0001" class="w-full border border-gray-300 dark:border-gray-600 rounded-lg px-3 py-2 dark:bg-gray-700 dark:text-white">
197
+ </div>
198
+ <div>
199
+ <label class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Stop Loss</label>
200
+ <input type="number" value="1.0900" step="0.0001" class="w-full border border-gray-300 dark:border-gray-600 rounded-lg px-3 py-2 dark:bg-gray-700 dark:text-white">
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </div>
205
+ </main>
206
+
207
+ <!-- Bottom Navigation -->
208
+ <nav class="border-t border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800">
209
+ <div class="flex justify-around">
210
+ <a href="#" class="flex flex-col items-center p-3 text-gray-500 dark:text-gray-400">
211
+ <i class="fas fa-list-ol text-lg"></i>
212
+ <span class="text-xs mt-1">Quotes</span>
213
+ </a>
214
+ <a href="#" class="flex flex-col items-center p-3 text-blue-500 dark:text-blue-400 tab-active">
215
+ <i class="fas fa-chart-line text-lg"></i>
216
+ <span class="text-xs mt-1">Chart</span>
217
+ </a>
218
+ <a href="#" class="flex flex-col items-center p-3 text-gray-500 dark:text-gray-400">
219
+ <i class="fas fa-exchange-alt text-lg"></i>
220
+ <span class="text-xs mt-1">Trade</span>
221
+ </a>
222
+ <a href="#" class="flex flex-col items-center p-3 text-gray-500 dark:text-gray-400">
223
+ <i class="fas fa-history text-lg"></i>
224
+ <span class="text-xs mt-1">History</span>
225
+ </a>
226
+ <a href="#" class="flex flex-col items-center p-3 text-gray-500 dark:text-gray-400">
227
+ <i class="fas fa-cog text-lg"></i>
228
+ <span class="text-xs mt-1">Settings</span>
229
+ </a>
230
+ </div>
231
+ </nav>
232
+ </div>
233
+
234
+ <script>
235
+ // Theme toggle
236
+ const themeToggle = document.getElementById('theme-toggle');
237
+ const html = document.documentElement;
238
+
239
+ // Check for saved theme preference or use system preference
240
+ if (localStorage.getItem('theme') === 'dark' || (!localStorage.getItem('theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
241
+ html.classList.add('dark');
242
+ } else {
243
+ html.classList.remove('dark');
244
+ }
245
+
246
+ themeToggle.addEventListener('click', () => {
247
+ html.classList.toggle('dark');
248
+ localStorage.setItem('theme', html.classList.contains('dark') ? 'dark' : 'light');
249
+ });
250
+
251
+ // Timeframe buttons
252
+ const timeframeButtons = document.querySelectorAll('.timeframe-btn');
253
+ timeframeButtons.forEach(button => {
254
+ button.addEventListener('click', () => {
255
+ timeframeButtons.forEach(btn => btn.classList.remove('active'));
256
+ button.classList.add('active');
257
+ // In a real app, this would fetch new data for the selected timeframe
258
+ console.log('Selected timeframe:', button.dataset.timeframe);
259
+ });
260
+ });
261
+
262
+ // Drawing tools
263
+ const drawingTools = document.querySelectorAll('.drawing-tool');
264
+ drawingTools.forEach(tool => {
265
+ tool.addEventListener('click', () => {
266
+ drawingTools.forEach(t => t.classList.remove('active'));
267
+ tool.classList.add('active');
268
+ console.log('Selected drawing tool:', tool.dataset.tool);
269
+ });
270
+ });
271
+
272
+ // Indicators
273
+ const indicatorsBtn = document.getElementById('indicators-btn');
274
+ const indicatorsPanel = document.getElementById('indicators-panel');
275
+ const indicatorItems = document.querySelectorAll('.indicator-item');
276
+
277
+ indicatorsBtn.addEventListener('click', () => {
278
+ indicatorsPanel.classList.toggle('hidden');
279
+ });
280
+
281
+ indicatorItems.forEach(item => {
282
+ item.addEventListener('click', () => {
283
+ item.classList.toggle('active');
284
+ console.log('Indicator toggled:', item.dataset.indicator);
285
+ });
286
+ });
287
+
288
+ // Simulate price updates
289
+ function updatePrice() {
290
+ const currentPriceElement = document.getElementById('current-price');
291
+ const priceChangeElement = document.getElementById('price-change');
292
+
293
+ // Generate random price movement
294
+ const currentPrice = parseFloat(currentPriceElement.textContent);
295
+ const change = (Math.random() - 0.5) * 0.002;
296
+ const newPrice = currentPrice + change;
297
+
298
+ currentPriceElement.textContent = newPrice.toFixed(4);
299
+
300
+ const priceChange = (newPrice - 1.0950).toFixed(4);
301
+ const percentChange = ((priceChange / 1.0950) * 100).toFixed(2);
302
+
303
+ if (priceChange >= 0) {
304
+ priceChangeElement.innerHTML = `
305
+ <span class="text-green-500">+${priceChange}</span>
306
+ <span class="text-green-500">(+${percentChange}%)</span>
307
+ `;
308
+ } else {
309
+ priceChangeElement.innerHTML = `
310
+ <span class="text-red-500">${priceChange}</span>
311
+ <span class="text-red-500">(${percentChange}%)</span>
312
+ `;
313
+ }
314
+
315
+ // Update chart with new data point
316
+ addNewDataPoint(newPrice);
317
+ }
318
+
319
+ // Update price every 3 seconds
320
+ setInterval(updatePrice, 3000);
321
+
322
+ // Initialize Chart
323
+ const ctx = document.getElementById('priceChart').getContext('2d');
324
+
325
+ // Generate sample candlestick data
326
+ function generateSampleData(count = 50) {
327
+ const data = [];
328
+ let price = 1.0900;
329
+
330
+ for (let i = 0; i < count; i++) {
331
+ const open = price;
332
+ const change = (Math.random() - 0.5) * 0.005;
333
+ const close = open + change;
334
+ const high = Math.max(open, close) + Math.random() * 0.002;
335
+ const low = Math.min(open, close) - Math.random() * 0.002;
336
+
337
+ data.push({
338
+ x: new Date(Date.now() - (count - i) * 15 * 60 * 1000), // 15 minute intervals
339
+ o: open,
340
+ h: high,
341
+ l: low,
342
+ c: close
343
+ });
344
+
345
+ price = close;
346
+ }
347
+
348
+ return data;
349
+ }
350
+
351
+ const sampleData = generateSampleData();
352
+
353
+ const chart = new Chart(ctx, {
354
+ type: 'candlestick',
355
+ data: {
356
+ datasets: [{
357
+ label: 'EUR/USD',
358
+ data: sampleData,
359
+ color: {
360
+ up: '#10b981',
361
+ down: '#ef4444',
362
+ unchanged: '#9ca3af',
363
+ }
364
+ }]
365
+ },
366
+ options: {
367
+ responsive: true,
368
+ maintainAspectRatio: false,
369
+ scales: {
370
+ x: {
371
+ type: 'time',
372
+ time: {
373
+ unit: 'minute',
374
+ displayFormats: {
375
+ minute: 'HH:mm'
376
+ }
377
+ },
378
+ grid: {
379
+ display: false
380
+ }
381
+ },
382
+ y: {
383
+ position: 'right',
384
+ ticks: {
385
+ callback: function(value) {
386
+ return value.toFixed(4);
387
+ }
388
+ }
389
+ }
390
+ },
391
+ plugins: {
392
+ legend: {
393
+ display: false
394
+ },
395
+ zoom: {
396
+ zoom: {
397
+ wheel: {
398
+ enabled: true,
399
+ },
400
+ pinch: {
401
+ enabled: true
402
+ },
403
+ mode: 'xy',
404
+ },
405
+ pan: {
406
+ enabled: true,
407
+ mode: 'xy',
408
+ }
409
+ }
410
+ }
411
+ }
412
+ });
413
+
414
+ // Add new data point to chart
415
+ function addNewDataPoint(price) {
416
+ const lastData = chart.data.datasets[0].data[chart.data.datasets[0].data.length - 1];
417
+ const change = (Math.random() - 0.5) * 0.005;
418
+ const close = price;
419
+ const open = lastData.c;
420
+ const high = Math.max(open, close) + Math.random() * 0.002;
421
+ const low = Math.min(open, close) - Math.random() * 0.002;
422
+
423
+ // Remove first data point if we have too many
424
+ if (chart.data.datasets[0].data.length > 100) {
425
+ chart.data.datasets[0].data.shift();
426
+ }
427
+
428
+ // Add new data point
429
+ chart.data.datasets[0].data.push({
430
+ x: new Date(),
431
+ o: open,
432
+ h: high,
433
+ l: low,
434
+ c: close
435
+ });
436
+
437
+ chart.update();
438
+ }
439
+ </script>
440
+ <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=WormGPT128/what" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
441
+ </html>