Testing347 commited on
Commit
4caa2f5
·
verified ·
1 Parent(s): e0881d6

Create privacy.html

Browse files
Files changed (1) hide show
  1. privacy.html +43 -0
privacy.html ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 - Privacy Policy</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
+ </style>
14
+ </head>
15
+ <body class="bg-black text-white">
16
+ <nav class="relative z-10 py-6 px-8 flex justify-between items-center backdrop-blur-sm">
17
+ <div class="flex items-center space-x-2">
18
+ <div class="w-8 h-8 rounded-full bg-indigo-600 flex items-center justify-center">
19
+ <div class="w-2 h-2 rounded-full bg-white animate-pulse"></div>
20
+ </div>
21
+ <span class="text-xl font-semibold">SI</span>
22
+ </div>
23
+ <div class="hidden md:flex space-x-8">
24
+ <a href="capabilities.html" class="hover:text-indigo-400 transition">Capabilities</a>
25
+ <a href="consciousness.html" class="hover:text-indigo-400 transition">Consciousness</a>
26
+ <a href="chat.html" class="hover:text-indigo-400 transition">Chat</a>
27
+ <a href="about.html" class="hover:text-indigo-400 transition">About</a>
28
+ </div>
29
+ <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>
30
+ </nav>
31
+
32
+ <section class="py-24 px-6">
33
+ <div class="max-w-3xl mx-auto">
34
+ <h1 class="text-4xl font-bold mb-6 gradient-text">Privacy Policy</h1>
35
+ <p class="text-gray-300 mb-4">We respect your privacy. This demo site does not collect personal data aside from any information you provide when submitting the access request form.</p>
36
+ </div>
37
+ </section>
38
+
39
+ <footer class="relative z-10 py-12 px-6 border-t border-gray-800/50 text-center text-gray-500 text-sm">
40
+ <p>© 2023 Super Intelligence. All rights reserved.</p>
41
+ </footer>
42
+ </body>
43
+ </html>