trillarmybewm commited on
Commit
4cd60a5
·
verified ·
1 Parent(s): 46fcd49

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +390 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Myspace
3
- emoji: 🐠
4
- colorFrom: gray
5
- colorTo: blue
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: myspace
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,390 @@
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>Welcome to My Space</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
15
+ min-height: 100vh;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ .hero-text {
20
+ background: linear-gradient(90deg, #3a7bd5, #00d2ff);
21
+ -webkit-background-clip: text;
22
+ background-clip: text;
23
+ color: transparent;
24
+ }
25
+
26
+ .floating {
27
+ animation: floating 3s ease-in-out infinite;
28
+ }
29
+
30
+ @keyframes floating {
31
+ 0% { transform: translateY(0px); }
32
+ 50% { transform: translateY(-15px); }
33
+ 100% { transform: translateY(0px); }
34
+ }
35
+
36
+ .card-hover:hover {
37
+ transform: translateY(-10px);
38
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
39
+ }
40
+
41
+ .social-icon {
42
+ transition: all 0.3s ease;
43
+ }
44
+
45
+ .social-icon:hover {
46
+ transform: scale(1.2);
47
+ }
48
+ </style>
49
+ </head>
50
+ <body class="text-gray-800">
51
+ <!-- Navigation -->
52
+ <nav class="fixed w-full bg-white bg-opacity-90 backdrop-blur-sm z-50 shadow-sm">
53
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
54
+ <div class="flex justify-between h-16 items-center">
55
+ <div class="flex-shrink-0 flex items-center">
56
+ <span class="text-xl font-bold text-blue-600">MySpace</span>
57
+ </div>
58
+ <div class="hidden md:block">
59
+ <div class="ml-10 flex items-baseline space-x-4">
60
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-blue-600 bg-blue-50">Home</a>
61
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">About</a>
62
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Projects</a>
63
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Blog</a>
64
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Contact</a>
65
+ </div>
66
+ </div>
67
+ <div class="md:hidden">
68
+ <button class="mobile-menu-button p-2 rounded-md text-gray-600 hover:text-blue-600 hover:bg-blue-50 focus:outline-none">
69
+ <i class="fas fa-bars text-xl"></i>
70
+ </button>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ </nav>
75
+
76
+ <!-- Hero Section -->
77
+ <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
78
+ <div class="flex flex-col md:flex-row items-center">
79
+ <div class="md:w-1/2 mb-12 md:mb-0">
80
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 hero-text">
81
+ Hello, I'm <span class="text-blue-600">Bewm</span>
82
+ </h1>
83
+ <p class="text-lg text-gray-600 mb-8 max-w-lg">
84
+ Welcome to my personal space where I share my thoughts, projects, and creative work.
85
+ I'm passionate about design, technology, and building meaningful experiences.
86
+ </p>
87
+ <div class="flex space-x-4">
88
+ <button class="px-6 py-3 bg-blue-600 text-white rounded-lg font-medium hover:bg-blue-700 transition duration-300 shadow-lg">
89
+ Explore My Work
90
+ </button>
91
+ <button class="px-6 py-3 border border-blue-600 text-blue-600 rounded-lg font-medium hover:bg-blue-50 transition duration-300">
92
+ Contact Me
93
+ </button>
94
+ </div>
95
+ </div>
96
+ <div class="md:w-1/2 flex justify-center">
97
+ <div class="relative w-64 h-64 md:w-80 md:h-80">
98
+ <div class="absolute inset-0 bg-blue-500 rounded-full opacity-20 blur-xl"></div>
99
+ <img src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=880&q=80"
100
+ alt="Profile"
101
+ class="relative w-full h-full rounded-full object-cover border-4 border-white shadow-xl floating">
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </section>
106
+
107
+ <!-- Features Section -->
108
+ <section class="py-20 bg-white">
109
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
110
+ <div class="text-center mb-16">
111
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">What I Do</h2>
112
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
113
+ I specialize in creating beautiful, functional digital experiences that make an impact.
114
+ </p>
115
+ </div>
116
+
117
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
118
+ <div class="bg-white p-8 rounded-xl shadow-lg transition duration-300 card-hover">
119
+ <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
120
+ <i class="fas fa-code text-blue-600 text-2xl"></i>
121
+ </div>
122
+ <h3 class="text-xl font-semibold mb-3">Web Development</h3>
123
+ <p class="text-gray-600">
124
+ Building responsive, performant websites and web applications with modern technologies.
125
+ </p>
126
+ </div>
127
+
128
+ <div class="bg-white p-8 rounded-xl shadow-lg transition duration-300 card-hover">
129
+ <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6">
130
+ <i class="fas fa-paint-brush text-purple-600 text-2xl"></i>
131
+ </div>
132
+ <h3 class="text-xl font-semibold mb-3">UI/UX Design</h3>
133
+ <p class="text-gray-600">
134
+ Creating intuitive and beautiful user interfaces that enhance user experience.
135
+ </p>
136
+ </div>
137
+
138
+ <div class="bg-white p-8 rounded-xl shadow-lg transition duration-300 card-hover">
139
+ <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-6">
140
+ <i class="fas fa-mobile-alt text-green-600 text-2xl"></i>
141
+ </div>
142
+ <h3 class="text-xl font-semibold mb-3">Mobile Apps</h3>
143
+ <p class="text-gray-600">
144
+ Developing cross-platform mobile applications with a focus on performance and usability.
145
+ </p>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </section>
150
+
151
+ <!-- Recent Projects -->
152
+ <section class="py-20 bg-gray-50">
153
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
154
+ <div class="text-center mb-16">
155
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Recent Projects</h2>
156
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
157
+ Take a look at some of my latest work and creative projects.
158
+ </p>
159
+ </div>
160
+
161
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
162
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 card-hover">
163
+ <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80"
164
+ alt="Project 1"
165
+ class="w-full h-48 object-cover">
166
+ <div class="p-6">
167
+ <h3 class="text-xl font-semibold mb-2">E-commerce Platform</h3>
168
+ <p class="text-gray-600 mb-4">A modern online shopping experience with seamless checkout.</p>
169
+ <a href="#" class="text-blue-600 font-medium hover:underline">View Project →</a>
170
+ </div>
171
+ </div>
172
+
173
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 card-hover">
174
+ <img src="https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1469&q=80"
175
+ alt="Project 2"
176
+ class="w-full h-48 object-cover">
177
+ <div class="p-6">
178
+ <h3 class="text-xl font-semibold mb-2">Health Tracker App</h3>
179
+ <p class="text-gray-600 mb-4">Mobile application for tracking fitness and nutrition goals.</p>
180
+ <a href="#" class="text-blue-600 font-medium hover:underline">View Project →</a>
181
+ </div>
182
+ </div>
183
+
184
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 card-hover">
185
+ <img src="https://images.unsplash.com/photo-1559028012-481c04fa702d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1436&q=80"
186
+ alt="Project 3"
187
+ class="w-full h-48 object-cover">
188
+ <div class="p-6">
189
+ <h3 class="text-xl font-semibold mb-2">Portfolio Website</h3>
190
+ <p class="text-gray-600 mb-4">Minimalist portfolio for a creative professional.</p>
191
+ <a href="#" class="text-blue-600 font-medium hover:underline">View Project →</a>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <div class="text-center mt-12">
197
+ <button class="px-6 py-3 border border-blue-600 text-blue-600 rounded-lg font-medium hover:bg-blue-50 transition duration-300">
198
+ View All Projects
199
+ </button>
200
+ </div>
201
+ </div>
202
+ </section>
203
+
204
+ <!-- Testimonials -->
205
+ <section class="py-20 bg-white">
206
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
207
+ <div class="text-center mb-16">
208
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">What People Say</h2>
209
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
210
+ Kind words from clients and colleagues I've worked with.
211
+ </p>
212
+ </div>
213
+
214
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
215
+ <div class="bg-gray-50 p-8 rounded-xl">
216
+ <div class="flex items-center mb-6">
217
+ <img src="https://randomuser.me/api/portraits/women/43.jpg"
218
+ alt="Client"
219
+ class="w-12 h-12 rounded-full object-cover mr-4">
220
+ <div>
221
+ <h4 class="font-semibold">Sarah Johnson</h4>
222
+ <p class="text-gray-500 text-sm">CEO, TechStart</p>
223
+ </div>
224
+ </div>
225
+ <p class="text-gray-600 italic">
226
+ "Working with Bewm was an absolute pleasure. Their attention to detail and creative solutions exceeded our expectations."
227
+ </p>
228
+ <div class="flex mt-4 text-yellow-400">
229
+ <i class="fas fa-star"></i>
230
+ <i class="fas fa-star"></i>
231
+ <i class="fas fa-star"></i>
232
+ <i class="fas fa-star"></i>
233
+ <i class="fas fa-star"></i>
234
+ </div>
235
+ </div>
236
+
237
+ <div class="bg-gray-50 p-8 rounded-xl">
238
+ <div class="flex items-center mb-6">
239
+ <img src="https://randomuser.me/api/portraits/men/32.jpg"
240
+ alt="Client"
241
+ class="w-12 h-12 rounded-full object-cover mr-4">
242
+ <div>
243
+ <h4 class="font-semibold">Michael Chen</h4>
244
+ <p class="text-gray-500 text-sm">Product Manager, DesignCo</p>
245
+ </div>
246
+ </div>
247
+ <p class="text-gray-600 italic">
248
+ "Bewm delivered our project ahead of schedule with exceptional quality. Their technical skills are matched by their professionalism."
249
+ </p>
250
+ <div class="flex mt-4 text-yellow-400">
251
+ <i class="fas fa-star"></i>
252
+ <i class="fas fa-star"></i>
253
+ <i class="fas fa-star"></i>
254
+ <i class="fas fa-star"></i>
255
+ <i class="fas fa-star"></i>
256
+ </div>
257
+ </div>
258
+
259
+ <div class="bg-gray-50 p-8 rounded-xl">
260
+ <div class="flex items-center mb-6">
261
+ <img src="https://randomuser.me/api/portraits/women/65.jpg"
262
+ alt="Client"
263
+ class="w-12 h-12 rounded-full object-cover mr-4">
264
+ <div>
265
+ <h4 class="font-semibold">Emily Rodriguez</h4>
266
+ <p class="text-gray-500 text-sm">Founder, CreativeMinds</p>
267
+ </div>
268
+ </div>
269
+ <p class="text-gray-600 italic">
270
+ "The website Bewm created for us has significantly increased our online conversions. Their design thinking is outstanding."
271
+ </p>
272
+ <div class="flex mt-4 text-yellow-400">
273
+ <i class="fas fa-star"></i>
274
+ <i class="fas fa-star"></i>
275
+ <i class="fas fa-star"></i>
276
+ <i class="fas fa-star"></i>
277
+ <i class="fas fa-star-half-alt"></i>
278
+ </div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+ </section>
283
+
284
+ <!-- Contact CTA -->
285
+ <section class="py-20 bg-gradient-to-r from-blue-500 to-blue-600 text-white">
286
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
287
+ <h2 class="text-3xl font-bold mb-6">Ready to Start Your Project?</h2>
288
+ <p class="text-lg mb-8 max-w-2xl mx-auto opacity-90">
289
+ I'm currently available for freelance work. Let's discuss how I can help bring your ideas to life.
290
+ </p>
291
+ <button class="px-8 py-4 bg-white text-blue-600 rounded-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg">
292
+ Get in Touch
293
+ </button>
294
+ </div>
295
+ </section>
296
+
297
+ <!-- Footer -->
298
+ <footer class="bg-gray-900 text-white py-12">
299
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
300
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
301
+ <div>
302
+ <h3 class="text-xl font-bold mb-4">MySpace</h3>
303
+ <p class="text-gray-400">
304
+ Creating digital experiences that inspire and engage.
305
+ </p>
306
+ </div>
307
+
308
+ <div>
309
+ <h4 class="text-lg font-semibold mb-4">Quick Links</h4>
310
+ <ul class="space-y-2">
311
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
312
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
313
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Projects</a></li>
314
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
315
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
316
+ </ul>
317
+ </div>
318
+
319
+ <div>
320
+ <h4 class="text-lg font-semibold mb-4">Services</h4>
321
+ <ul class="space-y-2">
322
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li>
323
+ <li><a href="#" class="text-gray-400 hover:text-white transition">UI/UX Design</a></li>
324
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Mobile Apps</a></li>
325
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Consulting</a></li>
326
+ </ul>
327
+ </div>
328
+
329
+ <div>
330
+ <h4 class="text-lg font-semibold mb-4">Connect</h4>
331
+ <div class="flex space-x-4">
332
+ <a href="#" class="social-icon text-gray-400 hover:text-blue-400">
333
+ <i class="fab fa-twitter text-xl"></i>
334
+ </a>
335
+ <a href="#" class="social-icon text-gray-400 hover:text-blue-600">
336
+ <i class="fab fa-linkedin text-xl"></i>
337
+ </a>
338
+ <a href="#" class="social-icon text-gray-400 hover:text-pink-500">
339
+ <i class="fab fa-instagram text-xl"></i>
340
+ </a>
341
+ <a href="#" class="social-icon text-gray-400 hover:text-gray-300">
342
+ <i class="fab fa-github text-xl"></i>
343
+ </a>
344
+ </div>
345
+ <p class="text-gray-400 mt-4">
346
+ hello@myspace.com<br>
347
+ +1 (555) 123-4567
348
+ </p>
349
+ </div>
350
+ </div>
351
+
352
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500 text-sm">
353
+ <p>© 2023 MySpace. All rights reserved.</p>
354
+ </div>
355
+ </div>
356
+ </footer>
357
+
358
+ <script>
359
+ // Mobile menu toggle
360
+ const mobileMenuButton = document.querySelector('.mobile-menu-button');
361
+ const mobileMenu = document.querySelector('.mobile-menu');
362
+
363
+ mobileMenuButton.addEventListener('click', () => {
364
+ // You would implement mobile menu functionality here
365
+ alert('Mobile menu would open here!');
366
+ });
367
+
368
+ // Simple animation on scroll
369
+ document.addEventListener('DOMContentLoaded', () => {
370
+ const cards = document.querySelectorAll('.card-hover');
371
+
372
+ const observer = new IntersectionObserver((entries) => {
373
+ entries.forEach(entry => {
374
+ if (entry.isIntersecting) {
375
+ entry.target.style.opacity = 1;
376
+ entry.target.style.transform = 'translateY(0)';
377
+ }
378
+ });
379
+ }, { threshold: 0.1 });
380
+
381
+ cards.forEach(card => {
382
+ card.style.opacity = 0;
383
+ card.style.transform = 'translateY(20px)';
384
+ card.style.transition = 'all 0.6s ease';
385
+ observer.observe(card);
386
+ });
387
+ });
388
+ </script>
389
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=trillarmybewm/myspace" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
390
+ </html>