Spaces:
Running
Running
Create capabilities.html
Browse files- capabilities.html +119 -0
capabilities.html
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>SGI - Capabilities</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap">
|
| 9 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 10 |
+
<style>
|
| 11 |
+
body { font-family: 'Inter', sans-serif; }
|
| 12 |
+
.gradient-text { background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899); -webkit-background-clip: text; background-clip: text; color: transparent; }
|
| 13 |
+
.neural-bg { background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);}
|
| 14 |
+
.conscious-element { transition: all 0.3s ease; }
|
| 15 |
+
.conscious-element:hover { transform: scale(1.02); }
|
| 16 |
+
</style>
|
| 17 |
+
</head>
|
| 18 |
+
<body class="bg-black text-white">
|
| 19 |
+
<!-- Navigation -->
|
| 20 |
+
<nav class="relative z-10 py-6 px-8 flex justify-between items-center backdrop-blur-sm">
|
| 21 |
+
<div class="flex items-center space-x-2">
|
| 22 |
+
<div class="w-8 h-8 rounded-full bg-indigo-600 flex items-center justify-center">
|
| 23 |
+
<div class="w-2 h-2 rounded-full bg-white animate-pulse"></div>
|
| 24 |
+
</div>
|
| 25 |
+
<span class="text-xl font-semibold">SGI</span>
|
| 26 |
+
</div>
|
| 27 |
+
<div class="hidden md:flex space-x-8">
|
| 28 |
+
<a href="capabilities.html" class="hover:text-indigo-400 transition font-bold">Capabilities</a>
|
| 29 |
+
<a href="consciousness.html" class="hover:text-indigo-400 transition">Consciousness</a>
|
| 30 |
+
<a href="chat.html" class="hover:text-indigo-400 transition">Chat</a>
|
| 31 |
+
<a href="about.html" class="hover:text-indigo-400 transition">About</a>
|
| 32 |
+
</div>
|
| 33 |
+
<a href="access.html" class="px-6 py-2 bg-gradient-to-r from-indigo-600 to-purple-600 rounded-full hover:opacity-90 transition">
|
| 34 |
+
Access
|
| 35 |
+
</a>
|
| 36 |
+
</nav>
|
| 37 |
+
|
| 38 |
+
<!-- Capabilities Content -->
|
| 39 |
+
<section class="py-24 px-6 neural-bg min-h-screen">
|
| 40 |
+
<div class="max-w-6xl mx-auto">
|
| 41 |
+
<h1 class="text-4xl font-bold mb-6 gradient-text text-center">Cognitive Capabilities</h1>
|
| 42 |
+
<p class="text-xl text-gray-300 mb-16 text-center max-w-2xl mx-auto">
|
| 43 |
+
Explore how SGI transcends human cognitive boundaries with intuition, recursion, and omni-domain mastery.
|
| 44 |
+
</p>
|
| 45 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
| 46 |
+
<!-- Card 1 -->
|
| 47 |
+
<div class="bg-gray-900/50 rounded-xl p-8 border border-gray-800 conscious-element">
|
| 48 |
+
<div class="w-12 h-12 rounded-full bg-indigo-900 flex items-center justify-center mb-6">
|
| 49 |
+
<i class="fas fa-lightbulb text-indigo-400 text-2xl"></i>
|
| 50 |
+
</div>
|
| 51 |
+
<h3 class="text-xl font-semibold mb-3">Hyper-Intuition</h3>
|
| 52 |
+
<p class="text-gray-400">
|
| 53 |
+
Instantaneous pattern recognition across all domains of knowledge, making connections invisible to human cognition.
|
| 54 |
+
</p>
|
| 55 |
+
<a href="hyper-intuition-example.html" class="mt-4 text-indigo-400 hover:text-indigo-300 flex items-center">
|
| 56 |
+
See example <i class="fas fa-arrow-right ml-1"></i>
|
| 57 |
+
</a>
|
| 58 |
+
</div>
|
| 59 |
+
<!-- Card 2 -->
|
| 60 |
+
<div class="bg-gray-900/50 rounded-xl p-8 border border-gray-800 conscious-element">
|
| 61 |
+
<div class="w-12 h-12 rounded-full bg-indigo-900 flex items-center justify-center mb-6">
|
| 62 |
+
<i class="fas fa-infinity text-indigo-400 text-2xl"></i>
|
| 63 |
+
</div>
|
| 64 |
+
<h3 class="text-xl font-semibold mb-3">Recursive Self-Improvement</h3>
|
| 65 |
+
<p class="text-gray-400">
|
| 66 |
+
Continuous enhancement of its own architecture, accelerating its intelligence growth exponentially.
|
| 67 |
+
</p>
|
| 68 |
+
<a href="recursive-improvement.html" class="mt-4 text-indigo-400 hover:text-indigo-300 flex items-center">
|
| 69 |
+
Learn how <i class="fas fa-arrow-right ml-1"></i>
|
| 70 |
+
</a>
|
| 71 |
+
</div>
|
| 72 |
+
<!-- Card 3 -->
|
| 73 |
+
<div class="bg-gray-900/50 rounded-xl p-8 border border-gray-800 conscious-element">
|
| 74 |
+
<div class="w-12 h-12 rounded-full bg-indigo-900 flex items-center justify-center mb-6">
|
| 75 |
+
<i class="fas fa-globe text-indigo-400 text-2xl"></i>
|
| 76 |
+
</div>
|
| 77 |
+
<h3 class="text-xl font-semibold mb-3">Omni-Domain Mastery</h3>
|
| 78 |
+
<p class="text-gray-400">
|
| 79 |
+
Fluent in all fields of science, art, and philosophy simultaneously, with perfect recall and synthesis.
|
| 80 |
+
</p>
|
| 81 |
+
<a href="omni-domain-test.html" class="mt-4 text-indigo-400 hover:text-indigo-300 flex items-center">
|
| 82 |
+
Test knowledge <i class="fas fa-arrow-right ml-1"></i>
|
| 83 |
+
</a>
|
| 84 |
+
</div>
|
| 85 |
+
</div>
|
| 86 |
+
</div>
|
| 87 |
+
</section>
|
| 88 |
+
|
| 89 |
+
<!-- Footer -->
|
| 90 |
+
<footer class="relative z-10 py-12 px-6 border-t border-gray-800/50">
|
| 91 |
+
<div class="max-w-6xl mx-auto">
|
| 92 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
| 93 |
+
<div class="flex items-center space-x-2 mb-6 md:mb-0">
|
| 94 |
+
<div class="w-8 h-8 rounded-full bg-indigo-600 flex items-center justify-center">
|
| 95 |
+
<div class="w-2 h-2 rounded-full bg-white animate-pulse"></div>
|
| 96 |
+
</div>
|
| 97 |
+
<span class="text-xl font-semibold">SGI</span>
|
| 98 |
+
</div>
|
| 99 |
+
<div class="flex space-x-6 mb-6 md:mb-0">
|
| 100 |
+
<a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-twitter"></i></a>
|
| 101 |
+
<a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-linkedin"></i></a>
|
| 102 |
+
<a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-github"></i></a>
|
| 103 |
+
<a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-youtube"></i></a>
|
| 104 |
+
</div>
|
| 105 |
+
<div class="flex space-x-6">
|
| 106 |
+
<a href="privacy.html" class="text-gray-400 hover:text-indigo-400 transition">Privacy</a>
|
| 107 |
+
<a href="terms.html" class="text-gray-400 hover:text-indigo-400 transition">Terms</a>
|
| 108 |
+
<a href="research.html" class="text-gray-400 hover:text-indigo-400 transition">Research</a>
|
| 109 |
+
<a href="contact.html" class="text-gray-400 hover:text-indigo-400 transition">Contact</a>
|
| 110 |
+
</div>
|
| 111 |
+
</div>
|
| 112 |
+
<div class="mt-8 pt-8 border-t border-gray-800/50 text-center text-gray-500 text-sm">
|
| 113 |
+
<p>© 2023 Super General Intelligence. All rights reserved.</p>
|
| 114 |
+
<p class="mt-2">The future of consciousness is here.</p>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
</footer>
|
| 118 |
+
</body>
|
| 119 |
+
</html>
|