Sebonego commited on
Commit
b200f2b
·
verified ·
1 Parent(s): ce6d57b

what happened? you were coding something for me

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +204 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Pixelpulse Playground
3
- emoji: 🏢
4
- colorFrom: purple
5
- colorTo: green
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: PixelPulse Playground 🎮
3
+ colorFrom: red
4
+ colorTo: purple
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,205 @@
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>PixelPulse Playground</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
10
+ <style>
11
+ .gradient-text {
12
+ background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
13
+ -webkit-background-clip: text;
14
+ background-clip: text;
15
+ color: transparent;
16
+ }
17
+ .card-hover {
18
+ transition: all 0.3s ease;
19
+ }
20
+ .card-hover:hover {
21
+ transform: translateY(-5px);
22
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
23
+ }
24
+ #vanta-bg {
25
+ position: absolute;
26
+ top: 0;
27
+ left: 0;
28
+ width: 100%;
29
+ height: 100%;
30
+ z-index: -1;
31
+ opacity: 0.7;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-50 min-h-screen overflow-x-hidden">
36
+ <div id="vanta-bg"></div>
37
+
38
+ <nav class="bg-white/80 backdrop-blur-md shadow-sm fixed w-full z-10">
39
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
40
+ <div class="flex justify-between h-16 items-center">
41
+ <div class="flex items-center">
42
+ <span class="text-xl font-bold gradient-text">PixelPulse</span>
43
+ </div>
44
+ <div class="hidden md:flex space-x-8">
45
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition-colors font-medium">Home</a>
46
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition-colors font-medium">Features</a>
47
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition-colors font-medium">Gallery</a>
48
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition-colors font-medium">Contact</a>
49
+ </div>
50
+ <button class="md:hidden text-gray-700 focus:outline-none">
51
+ <i data-feather="menu"></i>
52
+ </button>
53
+ </div>
54
+ </div>
55
+ </nav>
56
+
57
+ <main class="pt-24 pb-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
58
+ <section class="py-12">
59
+ <div class="text-center">
60
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">
61
+ <span class="gradient-text">Creative</span> Digital Experiences
62
+ </h1>
63
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">
64
+ Crafting immersive web experiences that captivate and engage your audience with cutting-edge design.
65
+ </p>
66
+ <div class="mt-8 flex justify-center space-x-4">
67
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition-colors shadow-lg">
68
+ Get Started
69
+ </button>
70
+ <button class="border border-gray-300 hover:bg-gray-50 text-gray-700 px-6 py-3 rounded-lg font-medium transition-colors">
71
+ Learn More
72
+ </button>
73
+ </div>
74
+ </div>
75
+ </section>
76
+
77
+ <section class="py-12">
78
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
79
+ <div class="bg-white rounded-xl p-6 shadow-lg card-hover">
80
+ <div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
81
+ <i data-feather="code" class="text-indigo-600"></i>
82
+ </div>
83
+ <h3 class="text-xl font-bold mb-2">Modern Development</h3>
84
+ <p class="text-gray-600">Clean, semantic code that performs flawlessly across all devices and browsers.</p>
85
+ </div>
86
+ <div class="bg-white rounded-xl p-6 shadow-lg card-hover">
87
+ <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4">
88
+ <i data-feather="eye" class="text-purple-600"></i>
89
+ </div>
90
+ <h3 class="text-xl font-bold mb-2">Stunning Visuals</h3>
91
+ <p class="text-gray-600">Beautiful interfaces that create emotional connections with your users.</p>
92
+ </div>
93
+ <div class="bg-white rounded-xl p-6 shadow-lg card-hover">
94
+ <div class="w-12 h-12 bg-pink-100 rounded-lg flex items-center justify-center mb-4">
95
+ <i data-feather="zap" class="text-pink-600"></i>
96
+ </div>
97
+ <h3 class="text-xl font-bold mb-2">Lightning Fast</h3>
98
+ <p class="text-gray-600">Optimized performance that keeps your visitors engaged and happy.</p>
99
+ </div>
100
+ </div>
101
+ </section>
102
+
103
+ <section class="py-12">
104
+ <div class="bg-gradient-to-r from-indigo-500 to-purple-600 rounded-2xl p-8 text-white">
105
+ <div class="max-w-3xl mx-auto text-center">
106
+ <h2 class="text-3xl font-bold mb-4">Ready to transform your digital presence?</h2>
107
+ <p class="text-indigo-100 mb-6">Let's create something amazing together. Our team is ready to bring your vision to life.</p>
108
+ <button class="bg-white text-indigo-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition-colors shadow-lg">
109
+ Schedule a Call
110
+ </button>
111
+ </div>
112
+ </div>
113
+ </section>
114
+ </main>
115
+
116
+ <footer class="bg-gray-900 text-white py-12">
117
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
118
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
119
+ <div>
120
+ <h3 class="text-xl font-bold mb-4">PixelPulse</h3>
121
+ <p class="text-gray-400">Crafting digital experiences that inspire and engage.</p>
122
+ </div>
123
+ <div>
124
+ <h4 class="font-bold mb-4">Quick Links</h4>
125
+ <ul class="space-y-2">
126
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Home</a></li>
127
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">About</a></li>
128
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Services</a></li>
129
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Contact</a></li>
130
+ </ul>
131
+ </div>
132
+ <div>
133
+ <h4 class="font-bold mb-4">Services</h4>
134
+ <ul class="space-y-2">
135
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Web Design</a></li>
136
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Development</a></li>
137
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">UI/UX</a></li>
138
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Branding</a></li>
139
+ </ul>
140
+ </div>
141
+ <div>
142
+ <h4 class="font-bold mb-4">Connect</h4>
143
+ <div class="flex space-x-4">
144
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
145
+ <i data-feather="twitter"></i>
146
+ </a>
147
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
148
+ <i data-feather="instagram"></i>
149
+ </a>
150
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
151
+ <i data-feather="linkedin"></i>
152
+ </a>
153
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
154
+ <i data-feather="github"></i>
155
+ </a>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
160
+ <p>&copy; 2023 PixelPulse Playground. All rights reserved.</p>
161
+ </div>
162
+ </div>
163
+ </footer>
164
+
165
+ <script>
166
+ VANTA.GLOBE({
167
+ el: "#vanta-bg",
168
+ mouseControls: true,
169
+ touchControls: true,
170
+ gyroControls: false,
171
+ minHeight: 200.00,
172
+ minWidth: 200.00,
173
+ scale: 1.00,
174
+ scaleMobile: 1.00,
175
+ color: 0x3a86ff,
176
+ backgroundColor: 0xf8fafc,
177
+ size: 0.8
178
+ });
179
+ </script>
180
+ <script>
181
+ feather.replace();
182
+
183
+ // Simple animation for cards on scroll
184
+ document.addEventListener('DOMContentLoaded', () => {
185
+ const cards = document.querySelectorAll('.card-hover');
186
+
187
+ const observer = new IntersectionObserver((entries) => {
188
+ entries.forEach(entry => {
189
+ if (entry.isIntersecting) {
190
+ entry.target.style.opacity = 1;
191
+ entry.target.style.transform = 'translateY(0)';
192
+ }
193
+ });
194
+ }, { threshold: 0.1 });
195
+
196
+ cards.forEach((card, index) => {
197
+ card.style.opacity = 0;
198
+ card.style.transform = 'translateY(20px)';
199
+ card.style.transition = `all 0.5s ease ${index * 0.1}s`;
200
+ observer.observe(card);
201
+ });
202
+ });
203
+ </script>
204
+ </body>
205
  </html>