File size: 2,167 Bytes
ae16813
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SI - Research</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>body{font-family:'Inter',sans-serif;} .gradient-text{background:linear-gradient(90deg,#6366f1,#8b5cf6,#ec4899);-webkit-background-clip:text;background-clip:text;color:transparent;}</style>
</head>
<body class="bg-black text-white">
    <nav class="relative z-10 py-6 px-8 flex justify-between items-center backdrop-blur-sm">
        <div class="flex items-center space-x-2">
            <div class="w-8 h-8 rounded-full bg-indigo-600 flex items-center justify-center"><div class="w-2 h-2 rounded-full bg-white animate-pulse"></div></div>
            <span class="text-xl font-semibold">SI</span>
        </div>
        <div class="hidden md:flex space-x-8">
            <a href="capabilities.html" class="hover:text-indigo-400 transition">Capabilities</a>
            <a href="consciousness.html" class="hover:text-indigo-400 transition">Consciousness</a>
            <a href="chat.html" class="hover:text-indigo-400 transition">Chat</a>
            <a href="about.html" class="hover:text-indigo-400 transition">About</a>
        </div>
        <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">Access</a>
    </nav>
    <section class="py-24 px-6">
        <div class="max-w-3xl mx-auto">
            <h1 class="text-4xl font-bold mb-6 gradient-text">Research</h1>
            <p class="text-gray-300 mb-4">Find papers and articles related to the development of Super Intelligence.</p>
        </div>
    </section>
    <footer class="relative z-10 py-12 px-6 border-t border-gray-800/50 text-center text-gray-500 text-sm">
        <p>© 2023 Super Intelligence. All rights reserved.</p>
    </footer>
</body>
</html>