File size: 23,359 Bytes
38d75e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ORYNX AI LABS - We Build the Future</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .testimonial-card {
            transition: all 0.3s ease;
        }
        .testimonial-card:hover {
            transform: scale(1.02);
        }
    </style>
</head>
<body class="font-sans antialiased text-gray-800">
    <!-- Navigation -->
    <nav class="bg-white shadow-lg sticky top-0 z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <img class="h-10 w-auto" src="https://cdn.hero.page/i/08a7f-e36d-2ffd-0a1f-555c23027e3-1000057064.png" alt="ORYNX AI LABS">
                        <span class="ml-2 text-xl font-bold gradient-text">ORYNX AI LABS</span>
                    </div>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#about" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a>
                    <a href="#products" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Products</a>
                    <a href="#contact" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
                    <button class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition duration-300">
                        Join Early Access
                    </button>
                </div>
                <div class="md:hidden flex items-center">
                    <button id="menu-btn" class="text-gray-700 hover:text-blue-600">
                        <i class="fas fa-bars text-xl"></i>
                    </button>
                </div>
            </div>
        </div>
        <!-- Mobile menu -->
        <div id="mobile-menu" class="hidden md:hidden bg-white pb-3 px-4">
            <a href="#about" class="block px-3 py-2 text-gray-700 hover:text-blue-600">About</a>
            <a href="#products" class="block px-3 py-2 text-gray-700 hover:text-blue-600">Products</a>
            <a href="#contact" class="block px-3 py-2 text-gray-700 hover:text-blue-600">Contact</a>
            <button class="w-full mt-2 bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition duration-300">
                Join Early Access
            </button>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero-gradient text-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-10 md:mb-0">
                    <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
                        We Build <span class="gradient-text">The Future</span>
                    </h1>
                    <p class="text-xl md:text-2xl mb-8 text-blue-100">
                        Pioneering the First Fully Developed AI Platform from Saudi Arabia
                    </p>
                    <p class="text-lg mb-10 text-blue-100">
                        We're not just joining the AI race. We're redefining it β€” from the heart of the Kingdom.
                    </p>
                    <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
                        <button class="bg-white text-blue-700 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition duration-300">
                            Explore Our Platform
                        </button>
                        <button class="border-2 border-white text-white px-8 py-3 rounded-full font-bold hover:bg-white hover:text-blue-700 transition duration-300">
                            Watch Demo
                        </button>
                    </div>
                </div>
                <div class="md:w-1/2 flex justify-center">
                    <img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" 
                         alt="AI Research" 
                         class="rounded-xl shadow-2xl max-w-full h-auto">
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="py-20 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">🧠 Who We Are</h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                    ORYNX AI LABS is the first fully developed AI platform in the world built in Saudi Arabia.
                </p>
            </div>
            
            <div class="grid md:grid-cols-3 gap-8 mb-16">
                <div class="bg-gray-50 p-8 rounded-xl shadow-sm">
                    <div class="text-blue-600 mb-4">
                        <i class="fas fa-flask text-3xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Research-Driven Innovation</h3>
                    <p class="text-gray-600">
                        Our team combines cutting-edge research with practical applications to create truly innovative solutions.
                    </p>
                </div>
                <div class="bg-gray-50 p-8 rounded-xl shadow-sm">
                    <div class="text-green-600 mb-4">
                        <i class="fas fa-flag text-3xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Saudi-Made Excellence</h3>
                    <p class="text-gray-600">
                        Proudly developed in Saudi Arabia, our platform meets global standards while addressing regional needs.
                    </p>
                </div>
                <div class="bg-gray-50 p-8 rounded-xl shadow-sm">
                    <div class="text-purple-600 mb-4">
                        <i class="fas fa-users text-3xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Community Focused</h3>
                    <p class="text-gray-600">
                        We believe in empowering individuals and businesses with accessible, powerful AI tools.
                    </p>
                </div>
            </div>
            
            <div class="text-center">
                <h3 class="text-2xl font-bold mb-6">We don't just sell AI tools. We build intelligence that builds your future.</h3>
                <img src="https://cdn.hero.page/i/08a7f-e36d-2ffd-0a1f-555c23027e3-1000057064.png" 
                     alt="ORYNX AI LABS Logo" 
                     class="mx-auto h-24 mb-8">
            </div>
        </div>
    </section>

    <!-- Products Section -->
    <section id="products" class="py-20 bg-gray-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">πŸ›  What We Build</h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                    Our platform offers comprehensive AI solutions designed to transform how you work, create, and innovate.
                </p>
            </div>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Product Card 1 -->
                <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
                    <div class="text-blue-600 mb-4">
                        <i class="fas fa-robot text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">AI Agent Ecosystem</h3>
                    <p class="text-gray-600 mb-4">
                        Multi-agent collaboration with memory, communication, and planning β€” powered by world-class LLMs and hosted in the cloud.
                    </p>
                    <span class="inline-block bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full uppercase font-semibold tracking-wide">Intelligent Automation</span>
                </div>
                
                <!-- Product Card 2 -->
                <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
                    <div class="text-purple-600 mb-4">
                        <i class="fas fa-code text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">No-Code App Builder</h3>
                    <p class="text-gray-600 mb-4">
                        Turn ideas into working apps using natural language. Design, deploy, and refine β€” all within a single platform.
                    </p>
                    <span class="inline-block bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded-full uppercase font-semibold tracking-wide">Chat-to-App</span>
                </div>
                
                <!-- Product Card 3 -->
                <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
                    <div class="text-green-600 mb-4">
                        <i class="fas fa-cogs text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Automation Layer</h3>
                    <p class="text-gray-600 mb-4">
                        Fully integrated white-labeled n8n, allowing seamless workflow creation β€” no API keys, no limits.
                    </p>
                    <span class="inline-block bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full uppercase font-semibold tracking-wide">Workflow Automation</span>
                </div>
                
                <!-- Product Card 4 -->
                <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
                    <div class="text-red-600 mb-4">
                        <i class="fas fa-photo-video text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Intelligent Media Tools</h3>
                    <p class="text-gray-600 mb-4">
                        Video, voice, and image generation powered by open-source models and integrations like HeyGen, Qwen, and Mozilla TTS.
                    </p>
                    <span class="inline-block bg-red-100 text-red-800 text-xs px-2 py-1 rounded-full uppercase font-semibold tracking-wide">Media Generation</span>
                </div>
                
                <!-- Product Card 5 -->
                <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
                    <div class="text-yellow-600 mb-4">
                        <i class="fas fa-rocket text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Deployment Made Simple</h3>
                    <p class="text-gray-600 mb-4">
                        Instantly push your ideas to production with smart versioning, mirror mode, and live debugging agents.
                    </p>
                    <span class="inline-block bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full uppercase font-semibold tracking-wide">One-Click Deployment</span>
                </div>
                
                <!-- Product Card 6 -->
                <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
                    <div class="text-indigo-600 mb-4">
                        <i class="fas fa-shield-alt text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Enterprise Security</h3>
                    <p class="text-gray-600 mb-4">
                        Built with enterprise-grade security and compliance to protect your data and intellectual property.
                    </p>
                    <span class="inline-block bg-indigo-100 text-indigo-800 text-xs px-2 py-1 rounded-full uppercase font-semibold tracking-wide">Data Protection</span>
                </div>
            </div>
        </div>
    </section>

    <!-- Vision Section -->
    <section class="py-20 bg-gradient-to-r from-blue-800 to-purple-800 text-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">🌍 Built for Visionaries</h2>
                <p class="text-xl max-w-3xl mx-auto">
                    Whether you're a creator, educator, enterprise, or startup β€” ORYNX gives you the tools to transform your vision into reality.
                </p>
            </div>
            
            <div class="grid md:grid-cols-4 gap-6 mb-16">
                <div class="bg-white bg-opacity-10 p-6 rounded-xl backdrop-blur-sm">
                    <i class="fas fa-bolt text-3xl mb-4 text-blue-300"></i>
                    <h3 class="text-xl font-bold mb-2">Build Faster</h3>
                    <p class="text-blue-100">Rapidly prototype and deploy AI solutions</p>
                </div>
                <div class="bg-white bg-opacity-10 p-6 rounded-xl backdrop-blur-sm">
                    <i class="fas fa-brain text-3xl mb-4 text-purple-300"></i>
                    <h3 class="text-xl font-bold mb-2">Automate Smarter</h3>
                    <p class="text-blue-100">Streamline workflows with intelligent automation</p>
                </div>
                <div class="bg-white bg-opacity-10 p-6 rounded-xl backdrop-blur-sm">
                    <i class="fas fa-globe text-3xl mb-4 text-green-300"></i>
                    <h3 class="text-xl font-bold mb-2">Scale Globally</h3>
                    <p class="text-blue-100">Deploy solutions that grow with your needs</p>
                </div>
                <div class="bg-white bg-opacity-10 p-6 rounded-xl backdrop-blur-sm">
                    <i class="fas fa-sliders-h text-3xl mb-4 text-yellow-300"></i>
                    <h3 class="text-xl font-bold mb-2">Customize Deeply</h3>
                    <p class="text-blue-100">Tailor AI to your specific requirements</p>
                </div>
            </div>
            
            <div class="text-center">
                <h3 class="text-2xl font-bold mb-6">πŸ‡ΈπŸ‡¦ Saudi-Made. Globally Ready.</h3>
                <p class="text-xl mb-8 max-w-3xl mx-auto">
                    We are proud to lead the future of AI β€” from Saudi Arabia to the world. This is not just a lab. It's a movement.
                </p>
                <button class="bg-white text-blue-700 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition duration-300">
                     πŸ“² Be First to Build the Future
                </button>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="py-16 bg-gray-900 text-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
            <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Build the Future with AI?</h2>
            <p class="text-xl mb-8 max-w-3xl mx-auto">
                Join the movement of innovators transforming industries with Saudi Arabia's premier AI platform.
            </p>
            <button class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-8 py-3 rounded-full font-bold hover:opacity-90 transition duration-300">
                Get Started Today
            </button>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contact" class="py-20 bg-gray-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid md:grid-cols-2 gap-12">
                <div>
                    <h2 class="text-3xl font-bold mb-6">Connect With Us</h2>
                    <p class="text-gray-600 mb-8">
                        Have questions or want to learn more? Reach out to our team.
                    </p>
                    
                    <div class="mb-8">
                        <h3 class="text-xl font-bold mb-4">Our Offices</h3>
                        <div class="flex items-start mb-4">
                            <i class="fas fa-building text-blue-600 mt-1 mr-3"></i>
                            <div>
                                <h4 class="font-bold">Headquarters</h4>
                                <p class="text-gray-600">Riyadh Front, Riyadh<br>Saudi Arabia</p>
                            </div>
                        </div>
                    </div>
                    
                    <div class="mb-8">
                        <h3 class="text-xl font-bold mb-4">Email Us</h3>
                        <div class="flex items-center">
                            <i class="fas fa-envelope text-blue-600 mr-3"></i>
                            <a href="mailto:hello@orynxailabs.com" class="text-gray-600 hover:text-blue-600">hello@orynxailabs.com</a>
                        </div>
                    </div>
                    
                    <div>
                        <h3 class="text-xl font-bold mb-4">Call Us</h3>
                        <div class="flex items-center">
                            <i class="fas fa-phone text-blue-600 mr-3"></i>
                            <a href="tel:+966564968056" class="text-gray-600 hover:text-blue-600">+966 56 496 8056</a>
                        </div>
                    </div>
                </div>
                
                <div>
                    <form class="bg-white p-8 rounded-xl shadow-md">
                        <h3 class="text-xl font-bold mb-6">Send us a message</h3>
                        <div class="mb-4">
                            <label for="name" class="block text-gray-700 mb-2">Name</label>
                            <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                        </div>
                        <div class="mb-4">
                            <label for="email" class="block text-gray-700 mb-2">Email</label>
                            <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                        </div>
                        <div class="mb-4">
                            <label for="subject" class="block text-gray-700 mb-2">Subject</label>
                            <input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                        </div>
                        <div class="mb-6">
                            <label for="message" class="block text-gray-700 mb-2">Message</label>
                            <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500"></textarea>
                        </div>
                        <button type="submit" class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-3 rounded-lg font-bold hover:opacity-90 transition duration-300">
                            Send Message
                        </button>
                    </form>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <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 class="h-8 w-auto" src="https://cdn.hero.page/i/08a7f-e36d-2ffd-0a1f-555c23027e3-1000057064.png" alt="ORYNX AI LABS">
                        <span class="ml-2 text-xl font-bold gradient-text">ORYNX AI LABS</span>
                    </div>
                    <p class="mt-2 text-gray-400">We Build the Future</p>
                </div>
                <div class="flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i class="fab fa-twitter text-xl"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i class="fab fa-linkedin text-xl"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i class="fab fa-github text-xl"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i class="fab fa-youtube text-xl"></i>
                    </a>
                </div>
            </div>
            <div class="mt-8 pt-8 border-t border-gray-800">
                <p class="text-gray-400 text-sm text-center">
                    &copy; 2023 ORYNX AI LABS. All rights reserved.
                </p>
            </div>
        </div>
    </footer>

    <script>
        // Mobile menu toggle
        document.getElementById('menu-btn').addEventListener('click', function() {
            document.getElementById('mobile-menu').classList.toggle('hidden');
        });

        // Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </script>
<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=Speedofmastery/or" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>