mohanbhat379 commited on
Commit
5a73a70
·
verified ·
1 Parent(s): 19f6c59

deploy it

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +273 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Pixelpulse Portal
3
- emoji: 📈
4
- colorFrom: purple
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: PixelPulse Portal 🚀
3
+ colorFrom: pink
4
+ colorTo: pink
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,274 @@
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 Portal</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/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
13
+ body {
14
+ font-family: 'Poppins', sans-serif;
15
+ overflow-x: hidden;
16
+ }
17
+ .hero-gradient {
18
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
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
+ </style>
25
+ </head>
26
+ <body class="bg-gray-50">
27
+ <!-- Vanta.js Globe Background -->
28
+ <div id="vanta-globe" class="fixed inset-0 -z-10"></div>
29
+
30
+ <!-- Navigation -->
31
+ <nav class="bg-white/80 backdrop-blur-md shadow-sm fixed w-full z-50">
32
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
33
+ <div class="flex justify-between h-16">
34
+ <div class="flex items-center">
35
+ <div class="flex-shrink-0 flex items-center">
36
+ <i data-feather="zap" class="text-indigo-600 w-6 h-6"></i>
37
+ <span class="ml-2 text-xl font-bold text-gray-900">PixelPulse</span>
38
+ </div>
39
+ </div>
40
+ <div class="hidden md:flex items-center space-x-8">
41
+ <a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Home</a>
42
+ <a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Features</a>
43
+ <a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Pricing</a>
44
+ <a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a>
45
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Get Started</button>
46
+ </div>
47
+ <div class="md:hidden flex items-center">
48
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-indigo-600 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false">
49
+ <i data-feather="menu"></i>
50
+ </button>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ </nav>
55
+
56
+ <!-- Hero Section -->
57
+ <section class="hero-gradient min-h-screen flex items-center justify-center pt-16 pb-20 px-4 sm:px-6 lg:px-8 text-white">
58
+ <div class="max-w-7xl mx-auto text-center">
59
+ <h1 class="text-4xl sm:text-5xl md:text-6xl font-bold mb-6 animate-slide-up">Welcome to <span class="bg-clip-text text-transparent bg-gradient-to-r from-yellow-400 to-pink-500">PixelPulse</span></h1>
60
+ <p class="text-xl sm:text-2xl max-w-3xl mx-auto mb-10 opacity-90">Where design meets innovation in a symphony of pixels and code. We craft digital experiences that leave lasting impressions.</p>
61
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
62
+ <button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 shadow-lg">Explore More</button>
63
+ <button class="bg-transparent border-2 border-white hover:bg-white/10 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 flex items-center justify-center gap-2">
64
+ <i data-feather="play-circle"></i> Watch Demo
65
+ </button>
66
+ </div>
67
+ </div>
68
+ </section>
69
+
70
+ <!-- Features Section -->
71
+ <section class="py-20 bg-white">
72
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
73
+ <div class="text-center mb-16">
74
+ <h2 class="text-3xl sm:text-4xl font-bold text-gray-900 mb-4">Amazing Features</h2>
75
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Experience the power of our platform with these incredible features designed for modern creators.</p>
76
+ </div>
77
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
78
+ <!-- Feature 1 -->
79
+ <div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
80
+ <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
81
+ <i data-feather="cpu" class="w-6 h-6 text-indigo-600"></i>
82
+ </div>
83
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Lightning Fast</h3>
84
+ <p class="text-gray-600">Optimized for speed and performance with cutting-edge technology stack.</p>
85
+ </div>
86
+ <!-- Feature 2 -->
87
+ <div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
88
+ <div class="w-14 h-14 bg-pink-100 rounded-lg flex items-center justify-center mb-6">
89
+ <i data-feather="edit" class="w-6 h-6 text-pink-600"></i>
90
+ </div>
91
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Custom Design</h3>
92
+ <p class="text-gray-600">Tailored solutions that match your brand identity perfectly.</p>
93
+ </div>
94
+ <!-- Feature 3 -->
95
+ <div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
96
+ <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
97
+ <i data-feather="shield" class="w-6 h-6 text-blue-600"></i>
98
+ </div>
99
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Secure Platform</h3>
100
+ <p class="text-gray-600">Enterprise-grade security to protect your data and privacy.</p>
101
+ </div>
102
+ </div>
103
+ </div>
104
+ </section>
105
+
106
+ <!-- Testimonials -->
107
+ <section class="py-20 bg-gray-50">
108
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
109
+ <div class="text-center mb-16">
110
+ <h2 class="text-3xl sm:text-4xl font-bold text-gray-900 mb-4">What People Say</h2>
111
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Don't just take our word for it. Here's what our clients say about us.</p>
112
+ </div>
113
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
114
+ <!-- Testimonial 1 -->
115
+ <div class="bg-white p-8 rounded-xl shadow-sm">
116
+ <div class="flex items-center mb-6">
117
+ <img src="http://static.photos/people/200x200/1" alt="Sarah Johnson" class="w-12 h-12 rounded-full object-cover">
118
+ <div class="ml-4">
119
+ <h4 class="font-bold text-gray-900">Sarah Johnson</h4>
120
+ <p class="text-indigo-600 text-sm">CEO, TechSolutions</p>
121
+ </div>
122
+ </div>
123
+ <p class="text-gray-600">"PixelPulse transformed our online presence completely. Their attention to detail is remarkable!"</p>
124
+ <div class="flex mt-4">
125
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
126
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
127
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
128
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
129
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
130
+ </div>
131
+ </div>
132
+ <!-- Testimonial 2 -->
133
+ <div class="bg-white p-8 rounded-xl shadow-sm">
134
+ <div class="flex items-center mb-6">
135
+ <img src="http://static.photos/people/200x200/2" alt="Michael Chen" class="w-12 h-12 rounded-full object-cover">
136
+ <div class="ml-4">
137
+ <h4 class="font-bold text-gray-900">Michael Chen</h4>
138
+ <p class="text-indigo-600 text-sm">Marketing Director</p>
139
+ </div>
140
+ </div>
141
+ <p class="text-gray-600">"The team delivered beyond our expectations. Our conversion rates increased by 140% after the redesign."</p>
142
+ <div class="flex mt-4">
143
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
144
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
145
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
146
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
147
+ <i data-feather="star" class="w-4 h-4 text-yellow-400"></i>
148
+ </div>
149
+ </div>
150
+ <!-- Testimonial 3 -->
151
+ <div class="bg-white p-8 rounded-xl shadow-sm">
152
+ <div class="flex items-center mb-6">
153
+ <img src="http://static.photos/people/200x200/3" alt="Emily Rodriguez" class="w-12 h-12 rounded-full object-cover">
154
+ <div class="ml-4">
155
+ <h4 class="font-bold text-gray-900">Emily Rodriguez</h4>
156
+ <p class="text-indigo-600 text-sm">Founder, CreativeMinds</p>
157
+ </div>
158
+ </div>
159
+ <p class="text-gray-600">"Working with PixelPulse was a game-changer. Their creative approach solved problems we didn't even know we had."</p>
160
+ <div class="flex mt-4">
161
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
162
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
163
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
164
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
165
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-yellow-400"></i>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </section>
171
+
172
+ <!-- CTA Section -->
173
+ <section class="py-20 bg-indigo-600 text-white">
174
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
175
+ <h2 class="text-3xl sm:text-4xl font-bold mb-6">Ready to Transform Your Digital Presence?</h2>
176
+ <p class="text-xl max-w-3xl mx-auto mb-10 opacity-90">Join thousands of satisfied clients who have elevated their brands with PixelPulse.</p>
177
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
178
+ <button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 shadow-lg">Get Started</button>
179
+ <button class="bg-transparent border-2 border-white hover:bg-white/10 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 flex items-center justify-center gap-2">
180
+ <i data-feather="message-circle"></i> Contact Us
181
+ </button>
182
+ </div>
183
+ </div>
184
+ </section>
185
+
186
+ <!-- Footer -->
187
+ <footer class="bg-gray-900 text-white py-16">
188
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
189
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-12">
190
+ <div>
191
+ <div class="flex items-center mb-6">
192
+ <i data-feather="zap" class="text-indigo-400 w-6 h-6"></i>
193
+ <span class="ml-2 text-xl font-bold">PixelPulse</span>
194
+ </div>
195
+ <p class="text-gray-400 mb-6">Crafting digital experiences that inspire and engage.</p>
196
+ <div class="flex space-x-4">
197
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="twitter"></i></a>
198
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="linkedin"></i></a>
199
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="instagram"></i></a>
200
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300"><i data-feather="github"></i></a>
201
+ </div>
202
+ </div>
203
+ <div>
204
+ <h4 class="text-lg font-semibold mb-6">Product</h4>
205
+ <ul class="space-y-3">
206
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Features</a></li>
207
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Pricing</a></li>
208
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Case Studies</a></li>
209
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Updates</a></li>
210
+ </ul>
211
+ </div>
212
+ <div>
213
+ <h4 class="text-lg font-semibold mb-6">Company</h4>
214
+ <ul class="space-y-3">
215
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
216
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li>
217
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
218
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Press</a></li>
219
+ </ul>
220
+ </div>
221
+ <div>
222
+ <h4 class="text-lg font-semibold mb-6">Support</h4>
223
+ <ul class="space-y-3">
224
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Help Center</a></li>
225
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact Us</a></li>
226
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a></li>
227
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a></li>
228
+ </ul>
229
+ </div>
230
+ </div>
231
+ <div class="border-t border-gray-800 mt-16 pt-8 flex flex-col md:flex-row justify-between items-center">
232
+ <p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 PixelPulse. All rights reserved.</p>
233
+ <div class="flex space-x-6">
234
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Privacy Policy</a>
235
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Terms of Service</a>
236
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Cookies</a>
237
+ </div>
238
+ </div>
239
+ </div>
240
+ </footer>
241
+
242
+ <script>
243
+ // Initialize Vanta.js globe
244
+ VANTA.GLOBE({
245
+ el: "#vanta-globe",
246
+ mouseControls: true,
247
+ touchControls: true,
248
+ gyroControls: false,
249
+ minHeight: 200.00,
250
+ minWidth: 200.00,
251
+ scale: 1.00,
252
+ scaleMobile: 1.00,
253
+ color: 0x3f83f8,
254
+ backgroundColor: 0xf8fafc
255
+ });
256
+
257
+ // Initialize feather icons
258
+ feather.replace();
259
+
260
+ // Simple animation for hero text
261
+ document.addEventListener('DOMContentLoaded', () => {
262
+ const heroText = document.querySelector('.animate-slide-up');
263
+ heroText.style.opacity = '0';
264
+ heroText.style.transform = 'translateY(20px)';
265
+
266
+ setTimeout(() => {
267
+ heroText.style.transition = 'opacity 0.6s ease-out, transform 0.6s ease-out';
268
+ heroText.style.opacity = '1';
269
+ heroText.style.transform = 'translateY(0)';
270
+ }, 200);
271
+ });
272
+ </script>
273
+ </body>
274
  </html>