File size: 28,030 Bytes
5786722 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conciencia Artificial | AI Education & Analysis</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>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.article-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.nav-link:hover {
color: #8b5cf6;
}
.tag:hover {
background-color: #e0e7ff;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #8b5cf6;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #7c3aed;
}
</style>
</head>
<body class="min-h-screen flex flex-col">
<!-- Navigation -->
<nav class="bg-white shadow-sm 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">
<span class="text-xl font-bold gradient-text">Conciencia Artificial</span>
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<a href="#" class="nav-link border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a>
<a href="#blog" class="nav-link border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Blog</a>
<a href="#about" class="nav-link border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">About</a>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:from-indigo-600 hover:to-purple-700 transition duration-150 ease-in-out">
Subscribe
</button>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden sm:hidden bg-white shadow-md">
<div class="pt-2 pb-3 space-y-1">
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a>
<a href="#blog" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Blog</a>
<a href="#about" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">About</a>
<div class="mt-4 pl-3 pr-4 py-2">
<button class="w-full bg-gradient-to-r from-indigo-500 to-purple-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:from-indigo-600 hover:to-purple-700 transition duration-150 ease-in-out">
Subscribe
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="bg-gradient-to-r from-indigo-50 to-purple-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
<div class="mb-12 lg:mb-0">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
Exploring the <span class="gradient-text">Frontiers</span> of Artificial Intelligence
</h1>
<p class="text-lg text-gray-600 mb-8">
Conciencia Artificial brings you cutting-edge analysis, educational resources, and thoughtful perspectives on AI technologies shaping our future.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#blog" class="bg-gradient-to-r from-indigo-600 to-purple-700 text-white px-6 py-3 rounded-md text-sm font-medium hover:from-indigo-700 hover:to-purple-800 transition duration-150 ease-in-out text-center">
Explore Articles
</a>
<a href="#about" class="bg-white text-indigo-600 px-6 py-3 rounded-md text-sm font-medium hover:bg-gray-50 transition duration-150 ease-in-out shadow-sm text-center">
Learn About Us
</a>
</div>
</div>
<div class="relative">
<div class="absolute inset-0 bg-gradient-to-r from-indigo-100 to-purple-100 rounded-xl transform rotate-6"></div>
<div class="relative bg-white rounded-xl shadow-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80" alt="AI Technology" class="w-full h-auto">
</div>
</div>
</div>
</div>
</header>
<!-- Featured Articles -->
<section id="blog" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Featured Articles</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Dive into our latest insights on artificial intelligence, machine learning, and emerging technologies.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Article 1 -->
<article class="article-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1677442136019-21780ecad995?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Generative AI" class="w-full h-full object-cover">
<div class="absolute top-4 right-4">
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded-full">Education</span>
</div>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>June 15, 2023</span>
<span class="mx-2">•</span>
<span>8 min read</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Understanding Generative AI: From GANs to Diffusion Models</h3>
<p class="text-gray-600 mb-4">
Explore the evolution of generative models and how they're transforming creative industries.
</p>
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/47.jpg" alt="Author">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-900">Dr. Elena Martinez</p>
<p class="text-sm text-gray-500">AI Researcher</p>
</div>
</div>
</div>
</article>
<!-- Article 2 -->
<article class="article-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1629904853893-c2c8981a1dc5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="AI Ethics" class="w-full h-full object-cover">
<div class="absolute top-4 right-4">
<span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded-full">Analysis</span>
</div>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>June 8, 2023</span>
<span class="mx-2">•</span>
<span>12 min read</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">The Ethical Implications of Large Language Models</h3>
<p class="text-gray-600 mb-4">
A deep dive into the challenges and responsibilities surrounding AI systems that can generate human-like text.
</p>
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Author">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-900">Prof. James Wilson</p>
<p class="text-sm text-gray-500">Ethics Specialist</p>
</div>
</div>
</div>
</article>
<!-- Article 3 -->
<article class="article-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1677442135453-3ffa9f4cae48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="AI News" class="w-full h-full object-cover">
<div class="absolute top-4 right-4">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded-full">News</span>
</div>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>June 1, 2023</span>
<span class="mx-2">•</span>
<span>6 min read</span>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Breakthrough in Multimodal AI: What It Means for the Future</h3>
<p class="text-gray-600 mb-4">
The latest advancements in AI systems that can process multiple data types simultaneously and their potential applications.
</p>
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Author">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-900">Sarah Chen</p>
<p class="text-sm text-gray-500">Tech Journalist</p>
</div>
</div>
</div>
</article>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-flex items-center px-6 py-3 border border-gray-300 shadow-sm text-base font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
View All Articles
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Categories Section -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Explore by Category</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Discover content tailored to your interests in artificial intelligence.
</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<a href="#" class="category-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition duration-300 ease-in-out text-center">
<div class="mx-auto h-12 w-12 flex items-center justify-center rounded-full bg-indigo-100 text-indigo-600 mb-4">
<i class="fas fa-newspaper text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">News</h3>
<p class="text-sm text-gray-500">Latest developments in AI</p>
</a>
<a href="#" class="category-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition duration-300 ease-in-out text-center">
<div class="mx-auto h-12 w-12 flex items-center justify-center rounded-full bg-purple-100 text-purple-600 mb-4">
<i class="fas fa-chart-line text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Analysis</h3>
<p class="text-sm text-gray-500">In-depth technical reviews</p>
</a>
<a href="#" class="category-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition duration-300 ease-in-out text-center">
<div class="mx-auto h-12 w-12 flex items-center justify-center rounded-full bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-graduation-cap text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Education</h3>
<p class="text-sm text-gray-500">Learn AI concepts</p>
</a>
<a href="#" class="category-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition duration-300 ease-in-out text-center">
<div class="mx-auto h-12 w-12 flex items-center justify-center rounded-full bg-green-100 text-green-600 mb-4">
<i class="fas fa-lightbulb text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Innovation</h3>
<p class="text-sm text-gray-500">Emerging technologies</p>
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-12 lg:mb-0">
<div class="relative">
<div class="absolute inset-0 bg-gradient-to-r from-indigo-100 to-purple-100 rounded-xl transform -rotate-3"></div>
<div class="relative bg-white rounded-xl shadow-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="About Conciencia Artificial" class="w-full h-auto">
</div>
</div>
</div>
<div>
<h2 class="text-3xl font-bold text-gray-900 mb-6">About Conciencia Artificial</h2>
<p class="text-lg text-gray-600 mb-6">
Founded with a vision to democratize AI knowledge, Conciencia Artificial is a leading educational platform dedicated to exploring the frontiers of artificial intelligence.
</p>
<p class="text-lg text-gray-600 mb-6">
Our mission is to bridge the gap between cutting-edge AI research and practical applications, making complex concepts accessible to developers, enthusiasts, and professionals alike.
</p>
<div class="bg-indigo-50 p-6 rounded-lg mb-6">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-award text-indigo-600 text-2xl"></i>
</div>
<div class="ml-3">
<h3 class="text-lg font-medium text-indigo-800 mb-1">Recognized by Alibaba</h3>
<p class="text-indigo-700">
Proud recipient of the Alibaba MVP award for contributions to AI education and innovation.
</p>
</div>
</div>
</div>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-gradient-to-r from-indigo-600 to-purple-700 text-white px-6 py-3 rounded-md text-sm font-medium hover:from-indigo-700 hover:to-purple-800 transition duration-150 ease-in-out text-center">
Our Story
</a>
<a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-md text-sm font-medium hover:bg-gray-50 transition duration-150 ease-in-out shadow-sm text-center border border-gray-300">
Meet the Team
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-gradient-to-r from-indigo-500 to-purple-600">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-12 lg:mb-0">
<h2 class="text-3xl font-bold text-white mb-4">Stay Updated</h2>
<p class="text-lg text-indigo-100 mb-6">
Subscribe to our newsletter for the latest articles, research summaries, and AI insights delivered to your inbox.
</p>
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-100 rounded-full p-2">
<i class="fas fa-envelope-open-text text-indigo-600 text-xl"></i>
</div>
<div class="ml-3">
<p class="text-sm text-indigo-100">Join 10,000+ AI enthusiasts</p>
</div>
</div>
</div>
<div>
<form class="space-y-4">
<div>
<label for="email" class="sr-only">Email address</label>
<input id="email" name="email" type="email" autocomplete="email" required class="w-full px-5 py-3 placeholder-gray-500 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm border-gray-300 rounded-md" placeholder="Enter your email">
</div>
<div class="flex items-center">
<input id="terms" name="terms" type="checkbox" class="h-4 w-4 text-indigo-600 focus:ring-indigo-500 border-gray-300 rounded">
<label for="terms" class="ml-2 block text-sm text-indigo-100">
I agree to receive emails and accept the <a href="#" class="font-medium text-white hover:text-indigo-200">privacy policy</a>
</label>
</div>
<div>
<button type="submit" class="w-full flex justify-center items-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Subscribe
<i class="fas fa-paper-plane ml-2"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="col-span-2">
<h3 class="text-xl font-bold gradient-text mb-4">Conciencia Artificial</h3>
<p class="text-gray-400 mb-6">
Exploring the frontiers of artificial intelligence through education, analysis, and thoughtful discussion.
</p>
<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>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Navigation</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#blog" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Categories</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Legal</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">GDPR</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800">
<p class="text-gray-400 text-sm text-center">
© 2023 Conciencia Artificial. All rights reserved.
</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Add shadow to navbar on scroll
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 10) {
nav.classList.add('shadow-lg');
nav.classList.remove('shadow-sm');
} else {
nav.classList.remove('shadow-lg');
nav.classList.add('shadow-sm');
}
});
</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=Backtun/conciencia-artificial-testing" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |