dydact commited on
Commit
d12b663
·
verified ·
1 Parent(s): 2a0bcfd

begin by cloning palantir.com fully, we will then modify it to suit my needs with a styling guidance document for you.

Browse files
Files changed (3) hide show
  1. README.md +8 -5
  2. index.html +225 -18
  3. styling-guide.html +162 -0
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Eyeofsauronos
3
- emoji:
4
- colorFrom: purple
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: EyeOfSauronOS 🧙‍♂️
3
+ colorFrom: green
4
+ colorTo: gray
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,226 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
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>EyeOfSauronOS | Enterprise Intelligence Platform</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
12
+ <style>
13
+ .hero-gradient {
14
+ background: radial-gradient(ellipse at center, rgba(13,20,33,0.8) 0%, rgba(13,20,33,1) 70%);
15
+ }
16
+ .globe-container {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 100%;
21
+ height: 100%;
22
+ z-index: -1;
23
+ }
24
+ .nav-link-hover:hover {
25
+ color: #3b82f6;
26
+ transition: all 0.3s ease;
27
+ }
28
+ .feature-card:hover {
29
+ transform: translateY(-5px);
30
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
31
+ transition: all 0.3s ease;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-900 text-gray-100 font-sans">
36
+ <!-- Vanta.js Globe Background -->
37
+ <div id="globe-container" class="globe-container"></div>
38
+
39
+ <!-- Navigation -->
40
+ <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
41
+ <div class="flex items-center">
42
+ <i data-feather="eye" class="w-8 h-8 text-blue-500 mr-2"></i>
43
+ <span class="text-xl font-bold">EyeOfSauronOS</span>
44
+ </div>
45
+ <div class="hidden md:flex space-x-8">
46
+ <a href="#" class="nav-link-hover">Products</a>
47
+ <a href="#" class="nav-link-hover">Solutions</a>
48
+ <a href="#" class="nav-link-hover">Developers</a>
49
+ <a href="#" class="nav-link-hover">Company</a>
50
+ <a href="#" class="nav-link-hover">Resources</a>
51
+ </div>
52
+ <div class="flex items-center space-x-4">
53
+ <a href="#" class="nav-link-hover hidden md:block">Contact</a>
54
+ <button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-md">Get Demo</button>
55
+ <button class="md:hidden">
56
+ <i data-feather="menu"></i>
57
+ </button>
58
+ </div>
59
+ </nav>
60
+
61
+ <!-- Hero Section -->
62
+ <section class="hero-gradient min-h-screen flex items-center relative overflow-hidden">
63
+ <div class="container mx-auto px-6 py-20 z-10">
64
+ <div class="max-w-3xl">
65
+ <h1 class="text-5xl md:text-6xl font-bold mb-6 leading-tight">
66
+ See All. <span class="text-blue-400">Know All.</span>
67
+ </h1>
68
+ <p class="text-xl md:text-2xl text-gray-300 mb-10">
69
+ The most powerful enterprise intelligence platform that illuminates your darkest data.
70
+ </p>
71
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
72
+ <button class="bg-blue-600 hover:bg-blue-700 px-8 py-4 rounded-md text-lg">
73
+ Request Demo
74
+ </button>
75
+ <button class="bg-gray-800 hover:bg-gray-700 px-8 py-4 rounded-md text-lg border border-gray-700">
76
+ Explore Features
77
+ </button>
78
+ </div>
79
+ </div>
80
+ </div>
81
+ </section>
82
+
83
+ <!-- Logo Cloud -->
84
+ <section class="bg-gray-800 py-12">
85
+ <div class="container mx-auto px-6">
86
+ <p class="text-center text-gray-400 mb-8">TRUSTED BY ENTERPRISES ACROSS THE GLOBE</p>
87
+ <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
88
+ <div class="opacity-70 hover:opacity-100 transition-opacity">Fortune 500</div>
89
+ <div class="opacity-70 hover:opacity-100 transition-opacity">Three Rings</div>
90
+ <div class="opacity-70 hover:opacity-100 transition-opacity">Minas Tirith</div>
91
+ <div class="opacity-70 hover:opacity-100 transition-opacity">Isengard Inc</div>
92
+ <div class="opacity-70 hover:opacity-100 transition-opacity">Rivendell Labs</div>
93
+ </div>
94
+ </div>
95
+ </section>
96
+
97
+ <!-- Features Section -->
98
+ <section class="py-20 bg-gray-900">
99
+ <div class="container mx-auto px-6">
100
+ <div class="text-center mb-16">
101
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Unprecedented Insight</h2>
102
+ <p class="text-xl text-gray-400 max-w-3xl mx-auto">
103
+ Our platform transforms raw data into strategic foresight with proprietary dark magic algorithms.
104
+ </p>
105
+ </div>
106
+
107
+ <div class="grid md:grid-cols-3 gap-8">
108
+ <!-- Feature 1 -->
109
+ <div class="feature-card bg-gray-800 p-8 rounded-lg">
110
+ <div class="w-14 h-14 bg-blue-900 rounded-full flex items-center justify-center mb-6">
111
+ <i data-feather="search" class="w-6 h-6 text-blue-400"></i>
112
+ </div>
113
+ <h3 class="text-xl font-bold mb-3">Omniscient Vision</h3>
114
+ <p class="text-gray-400">
115
+ Track every movement across your enterprise in real-time with our all-seeing surveillance.
116
+ </p>
117
+ </div>
118
+
119
+ <!-- Feature 2 -->
120
+ <div class="feature-card bg-gray-800 p-8 rounded-lg">
121
+ <div class="w-14 h-14 bg-purple-900 rounded-full flex items-center justify-center mb-6">
122
+ <i data-feather="cpu" class="w-6 h-6 text-purple-400"></i>
123
+ </div>
124
+ <h3 class="text-xl font-bold mb-3">Dark Intelligence</h3>
125
+ <p class="text-gray-400">
126
+ Our AI models predict threats before they emerge by analyzing the whispers of the shadows.
127
+ </p>
128
+ </div>
129
+
130
+ <!-- Feature 3 -->
131
+ <div class="feature-card bg-gray-800 p-8 rounded-lg">
132
+ <div class="w-14 h-14 bg-red-900 rounded-full flex items-center justify-center mb-6">
133
+ <i data-feather="shield" class="w-6 h-6 text-red-400"></i>
134
+ </div>
135
+ <h3 class="text-xl font-bold mb-3">Unbreakable Will</h3>
136
+ <p class="text-gray-400">
137
+ Enterprise-grade security that even the Fellowship couldn't penetrate. One does not simply hack our systems.
138
+ </p>
139
+ </div>
140
+ </div>
141
+ </div>
142
+ </section>
143
+
144
+ <!-- CTA Section -->
145
+ <section class="py-20 bg-gradient-to-r from-gray-800 to-gray-900">
146
+ <div class="container mx-auto px-6 text-center">
147
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to wield the ultimate power of knowledge?</h2>
148
+ <p class="text-xl text-gray-400 max-w-3xl mx-auto mb-10">
149
+ Join the dark side of data intelligence. We have cookies (and unparalleled surveillance capabilities).
150
+ </p>
151
+ <button class="bg-blue-600 hover:bg-blue-700 px-8 py-4 rounded-md text-lg font-medium">
152
+ Contact Our Nazgûl Sales Team
153
+ </button>
154
+ </div>
155
+ </section>
156
+
157
+ <!-- Footer -->
158
+ <footer class="bg-gray-900 border-t border-gray-800 py-12">
159
+ <div class="container mx-auto px-6">
160
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
161
+ <div>
162
+ <h4 class="text-lg font-semibold mb-4">Product</h4>
163
+ <ul class="space-y-2">
164
+ <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
165
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
166
+ <li><a href="#" class="text-gray-400 hover:text-white">Integrations</a></li>
167
+ </ul>
168
+ </div>
169
+ <div>
170
+ <h4 class="text-lg font-semibold mb-4">Company</h4>
171
+ <ul class="space-y-2">
172
+ <li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
173
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
174
+ <li><a href="#" class="text-gray-400 hover:text-white">Press</a></li>
175
+ </ul>
176
+ </div>
177
+ <div>
178
+ <h4 class="text-lg font-semibold mb-4">Resources</h4>
179
+ <ul class="space-y-2">
180
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
181
+ <li><a href="#" class="text-gray-400 hover:text-white">API Reference</a></li>
182
+ <li><a href="#" class="text-gray-400 hover:text-white">Community</a></li>
183
+ </ul>
184
+ </div>
185
+ <div>
186
+ <h4 class="text-lg font-semibold mb-4">Connect</h4>
187
+ <div class="flex space-x-4">
188
+ <a href="#"><i data-feather="twitter" class="text-gray-400 hover:text-blue-400"></i></a>
189
+ <a href="#"><i data-feather="linkedin" class="text-gray-400 hover:text-blue-700"></i></a>
190
+ <a href="#"><i data-feather="github" class="text-gray-400 hover:text-white"></i></a>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
195
+ <div class="flex items-center mb-4 md:mb-0">
196
+ <i data-feather="eye" class="w-6 h-6 text-blue-500 mr-2"></i>
197
+ <span class="font-bold">EyeOfSauronOS</span>
198
+ </div>
199
+ <div class="text-gray-400 text-sm">
200
+ © 2023 Dark Tower Technologies. All rights reserved. One platform to rule them all.
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </footer>
205
+
206
+ <script>
207
+ // Initialize Vanta.js
208
+ VANTA.GLOBE({
209
+ el: "#globe-container",
210
+ mouseControls: true,
211
+ touchControls: true,
212
+ gyroControls: false,
213
+ minHeight: 200.00,
214
+ minWidth: 200.00,
215
+ scale: 1.00,
216
+ scaleMobile: 1.00,
217
+ color: 0x3b82f6,
218
+ backgroundColor: 0x0d1421,
219
+ size: 1.00
220
+ });
221
+
222
+ // Initialize Feather Icons
223
+ feather.replace();
224
+ </script>
225
+ </body>
226
  </html>
styling-guide.html ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>EyeOfSauronOS Styling Guide</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <style>
10
+ .color-swatch {
11
+ width: 120px;
12
+ height: 120px;
13
+ border-radius: 8px;
14
+ display: flex;
15
+ flex-direction: column;
16
+ justify-content: flex-end;
17
+ padding: 8px;
18
+ margin: 8px;
19
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
20
+ }
21
+ .typo-example {
22
+ border-left: 4px solid #3b82f6;
23
+ padding-left: 12px;
24
+ margin: 16px 0;
25
+ }
26
+ </style>
27
+ </head>
28
+ <body class="bg-gray-50 text-gray-900">
29
+ <div class="container mx-auto px-6 py-12">
30
+ <h1 class="text-4xl font-bold mb-2">EyeOfSauronOS Design System</h1>
31
+ <p class="text-xl text-gray-600 mb-12">The comprehensive styling guide for building consistent Mordor-approved interfaces</p>
32
+
33
+ <section class="mb-16">
34
+ <h2 class="text-2xl font-bold mb-6 border-b pb-2">Color Palette</h2>
35
+ <div class="flex flex-wrap">
36
+ <div class="color-swatch" style="background-color: #0d1421;">
37
+ <span class="text-white">Dark Void</span>
38
+ <span class="text-gray-300 text-sm">#0d1421</span>
39
+ </div>
40
+ <div class="color-swatch" style="background-color: #1e293b;">
41
+ <span class="text-white">Shadow Realm</span>
42
+ <span class="text-gray-300 text-sm">#1e293b</span>
43
+ </div>
44
+ <div class="color-swatch" style="background-color: #3b82f6;">
45
+ <span class="text-white">Eye Blue</span>
46
+ <span class="text-white text-sm">#3b82f6</span>
47
+ </div>
48
+ <div class="color-swatch" style="background-color: #10b981;">
49
+ <span class="text-white">Orc Green</span>
50
+ <span class="text-white text-sm">#10b981</span>
51
+ </div>
52
+ <div class="color-swatch" style="background-color: #f59e0b;">
53
+ <span class="text-white">Ring Gold</span>
54
+ <span class="text-white text-sm">#f59e0b</span>
55
+ </div>
56
+ </div>
57
+ </section>
58
+
59
+ <section class="mb-16">
60
+ <h2 class="text-2xl font-bold mb-6 border-b pb-2">Typography</h2>
61
+
62
+ <div class="typo-example">
63
+ <h3 class="text-sm font-semibold text-gray-500 mb-1">HEADING 1</h3>
64
+ <h1 class="text-5xl font-bold mb-4">Omniscient Surveillance</h1>
65
+ </div>
66
+
67
+ <div class="typo-example">
68
+ <h3 class="text-sm font-semibold text-gray-500 mb-1">HEADING 2</h3>
69
+ <h2 class="text-3xl font-bold mb-4">Dark Intelligence Reports</h2>
70
+ </div>
71
+
72
+ <div class="typo-example">
73
+ <h3 class="text-sm font-semibold text-gray-500 mb-1">HEADING 3</h3>
74
+ <h3 class="text-xl font-bold mb-4">Nazgûl Team Members</h3>
75
+ </div>
76
+
77
+ <div class="typo-example">
78
+ <h3 class="text-sm font-semibold text-gray-500 mb-1">BODY TEXT</h3>
79
+ <p class="text-base mb-4">Our platform provides unparalleled insight into all enterprise activities. With real-time monitoring and predictive analytics, we help you maintain absolute control over your domain. The Eye sees all.</p>
80
+ </div>
81
+
82
+ <div class="typo-example">
83
+ <h3 class="text-sm font-semibold text-gray-500 mb-1">CAPTION TEXT</h3>
84
+ <p class="text-sm text-gray-500 mb-4">Data last collected at the Cracks of Doom on 10/25/2023</p>
85
+ </div>
86
+ </section>
87
+
88
+ <section class="mb-16">
89
+ <h2 class="text-2xl font-bold mb-6 border-b pb-2">UI Components</h2>
90
+
91
+ <div class="grid md:grid-cols-2 gap-8">
92
+ <div>
93
+ <h3 class="text-lg font-semibold mb-4">Buttons</h3>
94
+ <div class="space-y-4">
95
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md">Primary Action</button>
96
+ <button class="bg-gray-800 hover:bg-gray-700 text-white px-6 py-3 rounded-md border border-gray-700">Secondary</button>
97
+ <button class="text-blue-500 hover:text-blue-400 px-6 py-3 rounded-md border border-blue-500 hover:border-blue-400">Tertiary</button>
98
+ </div>
99
+ </div>
100
+
101
+ <div>
102
+ <h3 class="text-lg font-semibold mb-4">Cards</h3>
103
+ <div class="bg-gray-800 p-6 rounded-lg">
104
+ <div class="w-12 h-12 bg-blue-900 rounded-full flex items-center justify-center mb-4">
105
+ <i data-feather="eye" class="w-5 h-5 text-blue-400"></i>
106
+ </div>
107
+ <h4 class="text-lg font-bold mb-2">All-Seeing Module</h4>
108
+ <p class="text-gray-400 text-sm">Track movements across all nine realms with our patented dark vision technology.</p>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </section>
113
+
114
+ <section class="mb-16">
115
+ <h2 class="text-2xl font-bold mb-6 border-b pb-2">Iconography</h2>
116
+ <div class="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 gap-6">
117
+ <div class="flex flex-col items-center">
118
+ <i data-feather="eye" class="w-8 h-8 text-blue-500 mb-2"></i>
119
+ <span class="text-xs text-gray-600">eye</span>
120
+ </div>
121
+ <div class="flex flex-col items-center">
122
+ <i data-feather="search" class="w-8 h-8 text-blue-500 mb-2"></i>
123
+ <span class="text-xs text-gray-600">search</span>
124
+ </div>
125
+ <div class="flex flex-col items-center">
126
+ <i data-feather="shield" class="w-8 h-8 text-blue-500 mb-2"></i>
127
+ <span class="text-xs text-gray-600">shield</span>
128
+ </div>
129
+ <div class="flex flex-col items-center">
130
+ <i data-feather="cpu" class="w-8 h-8 text-blue-500 mb-2"></i>
131
+ <span class="text-xs text-gray-600">cpu</span>
132
+ </div>
133
+ <div class="flex flex-col items-center">
134
+ <i data-feather="globe" class="w-8 h-8 text-blue-500 mb-2"></i>
135
+ <span class="text-xs text-gray-600">globe</span>
136
+ </div>
137
+ <div class="flex flex-col items-center">
138
+ <i data-feather="users" class="w-8 h-8 text-blue-500 mb-2"></i>
139
+ <span class="text-xs text-gray-600">users</span>
140
+ </div>
141
+ </div>
142
+ </section>
143
+
144
+ <section>
145
+ <h2 class="text-2xl font-bold mb-6 border-b pb-2">Motion Principles</h2>
146
+ <div class="bg-gray-100 p-6 rounded-lg">
147
+ <h3 class="text-lg font-semibold mb-4">Interaction Guidelines</h3>
148
+ <ul class="list-disc pl-5 space-y-2 text-gray-700">
149
+ <li>Hover effects should be subtle but noticeable (scale 105%, slight elevation)</li>
150
+ <li>Transitions should last 300ms with ease-in-out timing</li>
151
+ <li>Modal appearances should have a slight fade and upward movement</li>
152
+ <li>Important alerts should pulse gently to attract the Eye's attention</li>
153
+ </ul>
154
+ </div>
155
+ </section>
156
+ </div>
157
+
158
+ <script>
159
+ feather.replace();
160
+ </script>
161
+ </body>
162
+ </html>