Samteff commited on
Commit
de1922c
·
verified ·
1 Parent(s): 4b66031

make me the most interesting website you can

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +371 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Chromashift Chronicles
3
- emoji: 👁
4
- colorFrom: yellow
5
- colorTo: gray
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: ChromaShift Chronicles
3
+ colorFrom: purple
4
+ colorTo: red
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,372 @@
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>ChromaShift Chronicles</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://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
15
+
16
+ :root {
17
+ --undefined-primary: #6366f1;
18
+ --undefined-secondary: #8b5cf6;
19
+ --undefined-accent: #ec4899;
20
+ --undefined-dark: #1e293b;
21
+ --undefined-light: #f1f5f9;
22
+ }
23
+
24
+ body {
25
+ font-family: 'Inter', sans-serif;
26
+ background-color: var(--undefined-dark);
27
+ color: var(--undefined-light);
28
+ overflow-x: hidden;
29
+ }
30
+
31
+ .undefined-gradient {
32
+ background: linear-gradient(135deg, var(--undefined-primary), var(--undefined-secondary), var(--undefined-accent));
33
+ }
34
+
35
+ .undefined-card {
36
+ background: rgba(30, 41, 59, 0.7);
37
+ backdrop-filter: blur(10px);
38
+ border: 1px solid rgba(99, 102, 241, 0.2);
39
+ transition: all 0.3s ease;
40
+ }
41
+
42
+ .undefined-card:hover {
43
+ transform: translateY(-5px);
44
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
45
+ border-color: rgba(99, 102, 241, 0.5);
46
+ }
47
+
48
+ .undefined-btn {
49
+ background: linear-gradient(135deg, var(--undefined-primary), var(--undefined-secondary));
50
+ transition: all 0.3s ease;
51
+ }
52
+
53
+ .undefined-btn:hover {
54
+ transform: scale(1.05);
55
+ box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
56
+ }
57
+
58
+ .undefined-text {
59
+ background: linear-gradient(135deg, var(--undefined-primary), var(--undefined-accent));
60
+ -webkit-background-clip: text;
61
+ -webkit-text-fill-color: transparent;
62
+ }
63
+
64
+ .floating {
65
+ animation: floating 3s ease-in-out infinite;
66
+ }
67
+
68
+ @keyframes floating {
69
+ 0% { transform: translateY(0px); }
70
+ 50% { transform: translateY(-15px); }
71
+ 100% { transform: translateY(0px); }
72
+ }
73
+
74
+ .parallax-scroll {
75
+ transform: translateZ(0);
76
+ will-change: transform;
77
+ }
78
+
79
+ .glow {
80
+ box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
81
+ }
82
+ </style>
83
+ </head>
84
+ <body class="min-h-screen">
85
+ <!-- Navigation -->
86
+ <nav class="fixed w-full z-50 py-4 px-6 undefined-gradient">
87
+ <div class="max-w-7xl mx-auto flex justify-between items-center">
88
+ <div class="flex items-center space-x-2">
89
+ <div class="w-10 h-10 rounded-full undefined-gradient glow"></div>
90
+ <span class="text-xl font-bold">ChromaShift</span>
91
+ </div>
92
+
93
+ <div class="hidden md:flex space-x-8">
94
+ <a href="#" class="font-medium hover:text-purple-200 transition">Home</a>
95
+ <a href="#" class="font-medium hover:text-purple-200 transition">Features</a>
96
+ <a href="#" class="font-medium hover:text-purple-200 transition">Gallery</a>
97
+ <a href="#" class="font-medium hover:text-purple-200 transition">About</a>
98
+ <a href="#" class="font-medium hover:text-purple-200 transition">Contact</a>
99
+ </div>
100
+
101
+ <button class="md:hidden text-white">
102
+ <i data-feather="menu"></i>
103
+ </button>
104
+ </div>
105
+ </nav>
106
+
107
+ <!-- Hero Section -->
108
+ <section id="hero" class="min-h-screen flex items-center pt-16">
109
+ <div id="vanta-bg" class="absolute inset-0 z-0"></div>
110
+ <div class="relative z-10 max-w-7xl mx-auto px-6 grid md:grid-cols-2 gap-12 items-center">
111
+ <div class="text-center md:text-left">
112
+ <h1 class="text-5xl md:text-7xl font-extrabold mb-6 undefined-text">
113
+ Undefined Beauty
114
+ </h1>
115
+ <p class="text-xl mb-8 max-w-lg">
116
+ Experience the extraordinary blend of undefined aesthetics and cutting-edge design. Where imagination meets innovation.
117
+ </p>
118
+ <div class="flex flex-col sm:flex-row gap-4 justify-center md:justify-start">
119
+ <button class="undefined-btn text-white font-bold py-3 px-8 rounded-full undefined-btn">
120
+ Explore Now
121
+ </button>
122
+ <button class="bg-transparent border-2 border-white text-white font-bold py-3 px-8 rounded-full hover:bg-white hover:text-slate-900 transition">
123
+ Learn More
124
+ </button>
125
+ </div>
126
+ </div>
127
+ <div class="flex justify-center">
128
+ <div class="relative">
129
+ <div class="w-64 h-64 md:w-80 md:h-80 rounded-full undefined-gradient glow floating"></div>
130
+ <div class="absolute inset-0 flex items-center justify-center">
131
+ <div class="w-48 h-48 md:w-60 md:h-60 rounded-full bg-slate-900 opacity-80"></div>
132
+ </div>
133
+ <div class="absolute inset-0 flex items-center justify-center">
134
+ <i data-feather="star" class="text-white w-16 h-16"></i>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- Features Section -->
142
+ <section class="py-20 relative">
143
+ <div class="max-w-7xl mx-auto px-6">
144
+ <div class="text-center mb-16">
145
+ <h2 class="text-4xl font-bold mb-4">Undefined Experiences</h2>
146
+ <p class="text-xl max-w-2xl mx-auto">
147
+ Discover the unique features that make our undefined aesthetic truly exceptional
148
+ </p>
149
+ </div>
150
+
151
+ <div class="grid md:grid-cols-3 gap-8">
152
+ <div class="undefined-card p-8 rounded-2xl">
153
+ <div class="w-16 h-16 rounded-full undefined-gradient flex items-center justify-center mb-6">
154
+ <i data-feather="zap" class="text-white w-8 h-8"></i>
155
+ </div>
156
+ <h3 class="text-2xl font-bold mb-4">Dynamic Shifts</h3>
157
+ <p class="mb-6">
158
+ Our undefined palette adapts in real-time to create immersive experiences that evolve with your interaction.
159
+ </p>
160
+ <a href="#" class="text-indigo-300 hover:text-indigo-100 flex items-center">
161
+ Learn more
162
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
163
+ </a>
164
+ </div>
165
+
166
+ <div class="undefined-card p-8 rounded-2xl">
167
+ <div class="w-16 h-16 rounded-full undefined-gradient flex items-center justify-center mb-6">
168
+ <i data-feather="eye" class="text-white w-8 h-8"></i>
169
+ </div>
170
+ <h3 class="text-2xl font-bold mb-4">Visual Harmony</h3>
171
+ <p class="mb-6">
172
+ Every element is carefully crafted to maintain visual balance while pushing the boundaries of undefined design.
173
+ </p>
174
+ <a href="#" class="text-indigo-300 hover:text-indigo-100 flex items-center">
175
+ Learn more
176
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
177
+ </a>
178
+ </div>
179
+
180
+ <div class="undefined-card p-8 rounded-2xl">
181
+ <div class="w-16 h-16 rounded-full undefined-gradient flex items-center justify-center mb-6">
182
+ <i data-feather="code" class="text-white w-8 h-8"></i>
183
+ </div>
184
+ <h3 class="text-2xl font-bold mb-4">Innovative Tech</h3>
185
+ <p class="mb-6">
186
+ Cutting-edge technologies seamlessly integrated to deliver unparalleled performance and undefined aesthetics.
187
+ </p>
188
+ <a href="#" class="text-indigo-300 hover:text-indigo-100 flex items-center">
189
+ Learn more
190
+ <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
191
+ </a>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </section>
196
+
197
+ <!-- Gallery Section -->
198
+ <section class="py-20 bg-slate-800">
199
+ <div class="max-w-7xl mx-auto px-6">
200
+ <div class="text-center mb-16">
201
+ <h2 class="text-4xl font-bold mb-4">Undefined Gallery</h2>
202
+ <p class="text-xl max-w-2xl mx-auto">
203
+ A visual journey through the undefined aesthetic universe
204
+ </p>
205
+ </div>
206
+
207
+ <div class="grid md:grid-cols-3 gap-6">
208
+ <div class="undefined-card rounded-2xl overflow-hidden group">
209
+ <div class="h-64 bg-gradient-to-br from-indigo-500 to-purple-600 relative overflow-hidden">
210
+ <img src="http://static.photos/abstract/640x360/1" alt="Abstract Art" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
211
+ <div class="absolute inset-0 bg-gradient-to-t from-slate-900 to-transparent"></div>
212
+ </div>
213
+ <div class="p-6">
214
+ <h3 class="text-xl font-bold mb-2">Chromatic Waves</h3>
215
+ <p>Exploring the fluid dynamics of undefined color theory</p>
216
+ </div>
217
+ </div>
218
+
219
+ <div class="undefined-card rounded-2xl overflow-hidden group">
220
+ <div class="h-64 bg-gradient-to-br from-purple-500 to-pink-600 relative overflow-hidden">
221
+ <img src="http://static.photos/technology/640x360/2" alt="Technology" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
222
+ <div class="absolute inset-0 bg-gradient-to-t from-slate-900 to-transparent"></div>
223
+ </div>
224
+ <div class="p-6">
225
+ <h3 class="text-xl font-bold mb-2">Digital Metamorphosis</h3>
226
+ <p>Where technology meets undefined artistic expression</p>
227
+ </div>
228
+ </div>
229
+
230
+ <div class="undefined-card rounded-2xl overflow-hidden group">
231
+ <div class="h-64 bg-gradient-to-br from-pink-500 to-red-600 relative overflow-hidden">
232
+ <img src="http://static.photos/minimal/640x360/3" alt="Minimal Design" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
233
+ <div class="absolute inset-0 bg-gradient-to-t from-slate-900 to-transparent"></div>
234
+ </div>
235
+ <div class="p-6">
236
+ <h3 class="text-xl font-bold mb-2">Essence Reduction</h3>
237
+ <p>Finding beauty in undefined simplicity</p>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </section>
243
+
244
+ <!-- CTA Section -->
245
+ <section class="py-20">
246
+ <div class="max-w-4xl mx-auto px-6 text-center">
247
+ <div class="undefined-card p-12 rounded-3xl">
248
+ <h2 class="text-4xl font-bold mb-6">Join the Undefined Movement</h2>
249
+ <p class="text-xl mb-8 max-w-2xl mx-auto">
250
+ Be part of a community that embraces the undefined beauty of creativity and innovation
251
+ </p>
252
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
253
+ <button class="undefined-btn text-white font-bold py-4 px-10 rounded-full undefined-btn">
254
+ Get Started
255
+ </button>
256
+ <button class="border-2 border-indigo-500 text-indigo-300 font-bold py-4 px-10 rounded-full hover:bg-indigo-500 hover:text-white transition">
257
+ View Demo
258
+ </button>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </section>
263
+
264
+ <!-- Footer -->
265
+ <footer class="py-12 bg-slate-900 border-t border-slate-800">
266
+ <div class="max-w-7xl mx-auto px-6">
267
+ <div class="grid md:grid-cols-4 gap-8">
268
+ <div>
269
+ <div class="flex items-center space-x-2 mb-6">
270
+ <div class="w-8 h-8 rounded-full undefined-gradient"></div>
271
+ <span class="text-xl font-bold">ChromaShift</span>
272
+ </div>
273
+ <p class="text-slate-400 mb-4">
274
+ Redefining digital experiences through undefined aesthetics and innovative design.
275
+ </p>
276
+ <div class="flex space-x-4">
277
+ <a href="#" class="text-slate-400 hover:text-white">
278
+ <i data-feather="twitter"></i>
279
+ </a>
280
+ <a href="#" class="text-slate-400 hover:text-white">
281
+ <i data-feather="instagram"></i>
282
+ </a>
283
+ <a href="#" class="text-slate-400 hover:text-white">
284
+ <i data-feather="github"></i>
285
+ </a>
286
+ </div>
287
+ </div>
288
+
289
+ <div>
290
+ <h3 class="text-lg font-bold mb-4">Products</h3>
291
+ <ul class="space-y-2">
292
+ <li><a href="#" class="text-slate-400 hover:text-white">ChromaSuite</a></li>
293
+ <li><a href="#" class="text-slate-400 hover:text-white">Undefined UI</a></li>
294
+ <li><a href="#" class="text-slate-400 hover:text-white">Aesthetic Engine</a></li>
295
+ <li><a href="#" class="text-slate-400 hover:text-white">Design Lab</a></li>
296
+ </ul>
297
+ </div>
298
+
299
+ <div>
300
+ <h3 class="text-lg font-bold mb-4">Resources</h3>
301
+ <ul class="space-y-2">
302
+ <li><a href="#" class="text-slate-400 hover:text-white">Documentation</a></li>
303
+ <li><a href="#" class="text-slate-400 hover:text-white">Tutorials</a></li>
304
+ <li><a href="#" class="text-slate-400 hover:text-white">Blog</a></li>
305
+ <li><a href="#" class="text-slate-400 hover:text-white">Community</a></li>
306
+ </ul>
307
+ </div>
308
+
309
+ <div>
310
+ <h3 class="text-lg font-bold mb-4">Subscribe</h3>
311
+ <p class="text-slate-400 mb-4">
312
+ Stay updated with our latest undefined creations
313
+ </p>
314
+ <div class="flex">
315
+ <input type="email" placeholder="Your email" class="bg-slate-800 text-white py-2 px-4 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 w-full">
316
+ <button class="undefined-gradient py-2 px-4 rounded-r-lg">
317
+ <i data-feather="send" class="text-white"></i>
318
+ </button>
319
+ </div>
320
+ </div>
321
+ </div>
322
+
323
+ <div class="border-t border-slate-800 mt-12 pt-8 text-center text-slate-500">
324
+ <p>© 2023 ChromaShift Chronicles. All rights reserved. Embrace the undefined.</p>
325
+ </div>
326
+ </div>
327
+ </footer>
328
+
329
+ <script>
330
+ // Initialize Feather Icons
331
+ feather.replace();
332
+
333
+ // Initialize Vanta.js Background
334
+ VANTA.WAVES({
335
+ el: "#vanta-bg",
336
+ mouseControls: true,
337
+ touchControls: true,
338
+ gyroControls: false,
339
+ minHeight: 400.00,
340
+ minWidth: 400.00,
341
+ scale: 1.00,
342
+ scaleMobile: 1.00,
343
+ color: 0x1e293b,
344
+ shininess: 15.00,
345
+ waveHeight: 15.00,
346
+ waveSpeed: 0.75,
347
+ zoom: 0.75
348
+ });
349
+
350
+ // Parallax effect for hero section
351
+ document.addEventListener('mousemove', (e) => {
352
+ const parallaxElements = document.querySelectorAll('.parallax-scroll');
353
+ const x = (window.innerWidth - e.pageX) / 50;
354
+ const y = (window.innerHeight - e.pageY) / 50;
355
+
356
+ parallaxElements.forEach(el => {
357
+ el.style.transform = `translateX(${x}px) translateY(${y}px)`;
358
+ });
359
+ });
360
+
361
+ // Scroll animations
362
+ window.addEventListener('scroll', () => {
363
+ const scrollPosition = window.scrollY;
364
+ const heroSection = document.getElementById('hero');
365
+
366
+ if (scrollPosition > 100) {
367
+ heroSection.style.opacity = `${1 - scrollPosition / 800}`;
368
+ }
369
+ });
370
+ </script>
371
+ </body>
372
  </html>