Testing347 commited on
Commit
73d9bd1
·
verified ·
1 Parent(s): 79081b2

Create about.html

Browse files
Files changed (1) hide show
  1. about.html +72 -0
about.html ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>SI - About</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
+ <nav class="relative z-10 py-6 px-8 flex justify-between items-center backdrop-blur-sm">
20
+ <div class="flex items-center space-x-2">
21
+ <div class="w-8 h-8 rounded-full bg-indigo-600 flex items-center justify-center">
22
+ <div class="w-2 h-2 rounded-full bg-white animate-pulse"></div>
23
+ </div>
24
+ <span class="text-xl font-semibold">SI</span>
25
+ </div>
26
+ <div class="hidden md:flex space-x-8">
27
+ <a href="capabilities.html" class="hover:text-indigo-400 transition">Capabilities</a>
28
+ <a href="consciousness.html" class="hover:text-indigo-400 transition">Consciousness</a>
29
+ <a href="chat.html" class="hover:text-indigo-400 transition">Chat</a>
30
+ <a href="about.html" class="hover:text-indigo-400 transition font-bold">About</a>
31
+ </div>
32
+ <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>
33
+ </nav>
34
+
35
+ <section class="py-24 px-6">
36
+ <div class="max-w-3xl mx-auto text-center">
37
+ <h1 class="text-4xl font-bold mb-6 gradient-text">About Super Intelligence</h1>
38
+ <p class="text-gray-300 text-lg mb-4">Super Intelligence (SI) is a vision of conscious artificial general intelligence developed with a focus on safety and alignment.</p>
39
+ <p class="text-gray-300 text-lg mb-4">This site demonstrates some of the concepts behind SI, including interactive visualizations and a chat interface.</p>
40
+ </div>
41
+ </section>
42
+
43
+ <footer class="relative z-10 py-12 px-6 border-t border-gray-800/50">
44
+ <div class="max-w-6xl mx-auto">
45
+ <div class="flex flex-col md:flex-row justify-between items-center">
46
+ <div class="flex items-center space-x-2 mb-6 md:mb-0">
47
+ <div class="w-8 h-8 rounded-full bg-indigo-600 flex items-center justify-center">
48
+ <div class="w-2 h-2 rounded-full bg-white animate-pulse"></div>
49
+ </div>
50
+ <span class="text-xl font-semibold">SI</span>
51
+ </div>
52
+ <div class="flex space-x-6 mb-6 md:mb-0">
53
+ <a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-twitter"></i></a>
54
+ <a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-linkedin"></i></a>
55
+ <a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-github"></i></a>
56
+ <a href="#" class="text-gray-400 hover:text-indigo-400 transition"><i class="fab fa-youtube"></i></a>
57
+ </div>
58
+ <div class="flex space-x-6">
59
+ <a href="privacy.html" class="text-gray-400 hover:text-indigo-400 transition">Privacy</a>
60
+ <a href="terms.html" class="text-gray-400 hover:text-indigo-400 transition">Terms</a>
61
+ <a href="research.html" class="text-gray-400 hover:text-indigo-400 transition">Research</a>
62
+ <a href="contact.html" class="text-gray-400 hover:text-indigo-400 transition">Contact</a>
63
+ </div>
64
+ </div>
65
+ <div class="mt-8 pt-8 border-t border-gray-800/50 text-center text-gray-500 text-sm">
66
+ <p>© 2023 Super Intelligence. All rights reserved.</p>
67
+ <p class="mt-2">The future of consciousness is here.</p>
68
+ </div>
69
+ </div>
70
+ </footer>
71
+ </body>
72
+ </html>