vmk1 commited on
Commit
c5c81d0
·
verified ·
1 Parent(s): 0ce5bc2

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +536 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: V4ish
3
- emoji: 🌖
4
- colorFrom: gray
5
- colorTo: red
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: v4ish
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: purple
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,536 @@
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>v4ish - Creative Developer</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=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background-color: #0a0a0a;
15
+ color: #f5f5f5;
16
+ scroll-behavior: smooth;
17
+ }
18
+
19
+ .gradient-text {
20
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
21
+ -webkit-background-clip: text;
22
+ background-clip: text;
23
+ color: transparent;
24
+ }
25
+
26
+ .project-card {
27
+ transition: all 0.3s ease;
28
+ background: rgba(255, 255, 255, 0.03);
29
+ backdrop-filter: blur(10px);
30
+ border: 1px solid rgba(255, 255, 255, 0.1);
31
+ }
32
+
33
+ .project-card:hover {
34
+ transform: translateY(-5px);
35
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
36
+ border-color: rgba(59, 130, 246, 0.5);
37
+ }
38
+
39
+ .nav-link {
40
+ position: relative;
41
+ }
42
+
43
+ .nav-link::after {
44
+ content: '';
45
+ position: absolute;
46
+ width: 0;
47
+ height: 2px;
48
+ bottom: -2px;
49
+ left: 0;
50
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
51
+ transition: width 0.3s ease;
52
+ }
53
+
54
+ .nav-link:hover::after {
55
+ width: 100%;
56
+ }
57
+
58
+ .skill-badge {
59
+ background: rgba(255, 255, 255, 0.05);
60
+ border: 1px solid rgba(255, 255, 255, 0.1);
61
+ transition: all 0.3s ease;
62
+ }
63
+
64
+ .skill-badge:hover {
65
+ background: rgba(59, 130, 246, 0.1);
66
+ border-color: rgba(59, 130, 246, 0.5);
67
+ }
68
+
69
+ .section-divider {
70
+ height: 1px;
71
+ background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
72
+ }
73
+ </style>
74
+ </head>
75
+ <body class="min-h-screen">
76
+ <!-- Navigation -->
77
+ <nav class="fixed w-full bg-black bg-opacity-80 backdrop-filter backdrop-blur-lg z-50 border-b border-gray-800">
78
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
79
+ <div class="flex justify-between h-16 items-center">
80
+ <div class="flex-shrink-0 flex items-center">
81
+ <span class="text-xl font-bold gradient-text">v4ish</span>
82
+ </div>
83
+ <div class="hidden md:block">
84
+ <div class="ml-10 flex items-center space-x-8">
85
+ <a href="#home" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Home</a>
86
+ <a href="#about" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">About</a>
87
+ <a href="#projects" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Projects</a>
88
+ <a href="#skills" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Skills</a>
89
+ <a href="#contact" class="nav-link text-gray-300 hover:text-white px-3 py-2 text-sm font-medium">Contact</a>
90
+ </div>
91
+ </div>
92
+ <div class="md:hidden">
93
+ <button id="mobile-menu-button" class="text-gray-300 hover:text-white focus:outline-none">
94
+ <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
95
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
96
+ </svg>
97
+ </button>
98
+ </div>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- Mobile menu -->
103
+ <div id="mobile-menu" class="hidden md:hidden bg-black bg-opacity-95 backdrop-filter backdrop-blur-lg border-t border-gray-800">
104
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
105
+ <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">Home</a>
106
+ <a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">About</a>
107
+ <a href="#projects" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">Projects</a>
108
+ <a href="#skills" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">Skills</a>
109
+ <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800">Contact</a>
110
+ </div>
111
+ </div>
112
+ </nav>
113
+
114
+ <!-- Hero Section -->
115
+ <section id="home" class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
116
+ <div class="flex flex-col md:flex-row items-center justify-between">
117
+ <div class="md:w-1/2 mb-10 md:mb-0">
118
+ <h1 class="text-4xl md:text-6xl font-bold mb-4">Hi, I'm <span class="gradient-text">v4ish</span></h1>
119
+ <h2 class="text-2xl md:text-3xl font-semibold text-gray-300 mb-6">Creative Developer</h2>
120
+ <p class="text-gray-400 mb-8 max-w-lg">
121
+ I build beautiful, functional, and user-friendly digital experiences.
122
+ Passionate about design, development, and everything in between.
123
+ </p>
124
+ <div class="flex space-x-4">
125
+ <a href="#contact" class="px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-600 rounded-md text-white font-medium hover:opacity-90 transition-opacity">
126
+ Get in Touch
127
+ </a>
128
+ <a href="#projects" class="px-6 py-3 border border-gray-700 rounded-md text-white font-medium hover:bg-gray-800 transition-colors">
129
+ View Work
130
+ </a>
131
+ </div>
132
+ </div>
133
+ <div class="md:w-1/2 flex justify-center">
134
+ <div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-gray-700">
135
+ <div class="absolute inset-0 bg-gradient-to-br from-blue-500 to-purple-600 opacity-70"></div>
136
+ <div class="absolute inset-0 flex items-center justify-center">
137
+ <i class="fas fa-user-astronaut text-8xl text-white opacity-90"></i>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </div>
142
+ </section>
143
+
144
+ <!-- About Section -->
145
+ <section id="about" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
146
+ <div class="section-divider my-12"></div>
147
+ <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center gradient-text">About Me</h2>
148
+ <div class="flex flex-col md:flex-row items-center gap-12">
149
+ <div class="md:w-1/2">
150
+ <p class="text-gray-300 mb-6">
151
+ I'm a passionate developer with a keen eye for design and user experience.
152
+ With several years of experience in web development, I specialize in creating
153
+ modern, responsive, and performant web applications.
154
+ </p>
155
+ <p class="text-gray-300 mb-6">
156
+ My journey in tech started when I was young, and I've been hooked ever since.
157
+ I love solving complex problems and turning ideas into reality through code.
158
+ </p>
159
+ <p class="text-gray-300 mb-8">
160
+ When I'm not coding, you can find me exploring new technologies, contributing
161
+ to open-source projects, or enjoying the outdoors.
162
+ </p>
163
+ <div class="flex flex-wrap gap-4">
164
+ <div class="flex items-center">
165
+ <i class="fas fa-map-marker-alt text-blue-400 mr-2"></i>
166
+ <span class="text-gray-300">Remote, Worldwide</span>
167
+ </div>
168
+ <div class="flex items-center">
169
+ <i class="fas fa-code text-purple-400 mr-2"></i>
170
+ <span class="text-gray-300">Full-Stack Development</span>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ <div class="md:w-1/2">
175
+ <div class="bg-gray-800 rounded-xl p-8 project-card">
176
+ <h3 class="text-xl font-semibold mb-4">My Experience</h3>
177
+ <div class="space-y-6">
178
+ <div>
179
+ <h4 class="font-medium text-gray-200">Frontend Developer @ TechCorp</h4>
180
+ <p class="text-sm text-gray-400">2021 - Present</p>
181
+ <p class="text-gray-300 mt-2">Building modern web applications with React and Next.js.</p>
182
+ </div>
183
+ <div>
184
+ <h4 class="font-medium text-gray-200">Freelance Developer</h4>
185
+ <p class="text-sm text-gray-400">2019 - 2021</p>
186
+ <p class="text-gray-300 mt-2">Worked with various clients to deliver custom web solutions.</p>
187
+ </div>
188
+ <div>
189
+ <h4 class="font-medium text-gray-200">Computer Science Student</h4>
190
+ <p class="text-sm text-gray-400">2015 - 2019</p>
191
+ <p class="text-gray-300 mt-2">Graduated with honors while working on personal projects.</p>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ </div>
197
+ </section>
198
+
199
+ <!-- Projects Section -->
200
+ <section id="projects" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
201
+ <div class="section-divider my-12"></div>
202
+ <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center gradient-text">Featured Projects</h2>
203
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
204
+ <!-- Project 1 -->
205
+ <div class="project-card rounded-xl overflow-hidden">
206
+ <div class="h-48 bg-gradient-to-r from-blue-600 to-purple-700 flex items-center justify-center">
207
+ <i class="fas fa-project-diagram text-6xl text-white opacity-90"></i>
208
+ </div>
209
+ <div class="p-6">
210
+ <h3 class="text-xl font-semibold mb-2">E-Commerce Platform</h3>
211
+ <p class="text-gray-400 mb-4">A full-featured online store with payment integration and admin dashboard.</p>
212
+ <div class="flex flex-wrap gap-2 mb-4">
213
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">React</span>
214
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">Node.js</span>
215
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">MongoDB</span>
216
+ </div>
217
+ <a href="#" class="text-blue-400 hover:text-blue-300 text-sm font-medium flex items-center">
218
+ View Project <i class="fas fa-arrow-right ml-2"></i>
219
+ </a>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- Project 2 -->
224
+ <div class="project-card rounded-xl overflow-hidden">
225
+ <div class="h-48 bg-gradient-to-r from-purple-600 to-pink-700 flex items-center justify-center">
226
+ <i class="fas fa-mobile-alt text-6xl text-white opacity-90"></i>
227
+ </div>
228
+ <div class="p-6">
229
+ <h3 class="text-xl font-semibold mb-2">Fitness App</h3>
230
+ <p class="text-gray-400 mb-4">Mobile application for tracking workouts and nutrition with social features.</p>
231
+ <div class="flex flex-wrap gap-2 mb-4">
232
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">React Native</span>
233
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">Firebase</span>
234
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">Redux</span>
235
+ </div>
236
+ <a href="#" class="text-blue-400 hover:text-blue-300 text-sm font-medium flex items-center">
237
+ View Project <i class="fas fa-arrow-right ml-2"></i>
238
+ </a>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Project 3 -->
243
+ <div class="project-card rounded-xl overflow-hidden">
244
+ <div class="h-48 bg-gradient-to-r from-pink-600 to-red-700 flex items-center justify-center">
245
+ <i class="fas fa-chart-line text-6xl text-white opacity-90"></i>
246
+ </div>
247
+ <div class="p-6">
248
+ <h3 class="text-xl font-semibold mb-2">Analytics Dashboard</h3>
249
+ <p class="text-gray-400 mb-4">Real-time data visualization platform with customizable reports.</p>
250
+ <div class="flex flex-wrap gap-2 mb-4">
251
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">Vue.js</span>
252
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">D3.js</span>
253
+ <span class="skill-badge px-3 py-1 rounded-full text-xs text-gray-300">Express</span>
254
+ </div>
255
+ <a href="#" class="text-blue-400 hover:text-blue-300 text-sm font-medium flex items-center">
256
+ View Project <i class="fas fa-arrow-right ml-2"></i>
257
+ </a>
258
+ </div>
259
+ </div>
260
+ </div>
261
+ <div class="text-center mt-12">
262
+ <a href="#" class="inline-flex items-center px-6 py-3 border border-gray-700 rounded-md text-white font-medium hover:bg-gray-800 transition-colors">
263
+ View All Projects <i class="fas fa-arrow-right ml-2"></i>
264
+ </a>
265
+ </div>
266
+ </section>
267
+
268
+ <!-- Skills Section -->
269
+ <section id="skills" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
270
+ <div class="section-divider my-12"></div>
271
+ <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center gradient-text">Skills & Technologies</h2>
272
+ <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
273
+ <!-- Frontend -->
274
+ <div class="bg-gray-800 rounded-xl p-6 project-card">
275
+ <div class="flex items-center mb-4">
276
+ <i class="fas fa-laptop-code text-blue-400 mr-3 text-xl"></i>
277
+ <h3 class="text-lg font-semibold">Frontend</h3>
278
+ </div>
279
+ <ul class="space-y-2">
280
+ <li class="flex items-center text-gray-300">
281
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> React.js
282
+ </li>
283
+ <li class="flex items-center text-gray-300">
284
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Next.js
285
+ </li>
286
+ <li class="flex items-center text-gray-300">
287
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Vue.js
288
+ </li>
289
+ <li class="flex items-center text-gray-300">
290
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> TailwindCSS
291
+ </li>
292
+ <li class="flex items-center text-gray-300">
293
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> TypeScript
294
+ </li>
295
+ </ul>
296
+ </div>
297
+
298
+ <!-- Backend -->
299
+ <div class="bg-gray-800 rounded-xl p-6 project-card">
300
+ <div class="flex items-center mb-4">
301
+ <i class="fas fa-server text-purple-400 mr-3 text-xl"></i>
302
+ <h3 class="text-lg font-semibold">Backend</h3>
303
+ </div>
304
+ <ul class="space-y-2">
305
+ <li class="flex items-center text-gray-300">
306
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Node.js
307
+ </li>
308
+ <li class="flex items-center text-gray-300">
309
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Express
310
+ </li>
311
+ <li class="flex items-center text-gray-300">
312
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Django
313
+ </li>
314
+ <li class="flex items-center text-gray-300">
315
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> GraphQL
316
+ </li>
317
+ <li class="flex items-center text-gray-300">
318
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> REST APIs
319
+ </li>
320
+ </ul>
321
+ </div>
322
+
323
+ <!-- Databases -->
324
+ <div class="bg-gray-800 rounded-xl p-6 project-card">
325
+ <div class="flex items-center mb-4">
326
+ <i class="fas fa-database text-pink-400 mr-3 text-xl"></i>
327
+ <h3 class="text-lg font-semibold">Databases</h3>
328
+ </div>
329
+ <ul class="space-y-2">
330
+ <li class="flex items-center text-gray-300">
331
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> MongoDB
332
+ </li>
333
+ <li class="flex items-center text-gray-300">
334
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> PostgreSQL
335
+ </li>
336
+ <li class="flex items-center text-gray-300">
337
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Firebase
338
+ </li>
339
+ <li class="flex items-center text-gray-300">
340
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Redis
341
+ </li>
342
+ <li class="flex items-center text-gray-300">
343
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> MySQL
344
+ </li>
345
+ </ul>
346
+ </div>
347
+
348
+ <!-- DevOps -->
349
+ <div class="bg-gray-800 rounded-xl p-6 project-card">
350
+ <div class="flex items-center mb-4">
351
+ <i class="fas fa-cloud text-yellow-400 mr-3 text-xl"></i>
352
+ <h3 class="text-lg font-semibold">DevOps</h3>
353
+ </div>
354
+ <ul class="space-y-2">
355
+ <li class="flex items-center text-gray-300">
356
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Docker
357
+ </li>
358
+ <li class="flex items-center text-gray-300">
359
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Kubernetes
360
+ </li>
361
+ <li class="flex items-center text-gray-300">
362
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> AWS
363
+ </li>
364
+ <li class="flex items-center text-gray-300">
365
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> CI/CD
366
+ </li>
367
+ <li class="flex items-center text-gray-300">
368
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> GitHub Actions
369
+ </li>
370
+ </ul>
371
+ </div>
372
+
373
+ <!-- Design -->
374
+ <div class="bg-gray-800 rounded-xl p-6 project-card">
375
+ <div class="flex items-center mb-4">
376
+ <i class="fas fa-paint-brush text-green-400 mr-3 text-xl"></i>
377
+ <h3 class="text-lg font-semibold">Design</h3>
378
+ </div>
379
+ <ul class="space-y-2">
380
+ <li class="flex items-center text-gray-300">
381
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Figma
382
+ </li>
383
+ <li class="flex items-center text-gray-300">
384
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Adobe XD
385
+ </li>
386
+ <li class="flex items-center text-gray-300">
387
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> UI/UX
388
+ </li>
389
+ <li class="flex items-center text-gray-300">
390
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Prototyping
391
+ </li>
392
+ <li class="flex items-center text-gray-300">
393
+ <i class="fas fa-check text-green-400 mr-2 text-xs"></i> Wireframing
394
+ </li>
395
+ </ul>
396
+ </div>
397
+ </div>
398
+ </section>
399
+
400
+ <!-- Contact Section -->
401
+ <section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
402
+ <div class="section-divider my-12"></div>
403
+ <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center gradient-text">Get In Touch</h2>
404
+ <div class="flex flex-col md:flex-row gap-12">
405
+ <div class="md:w-1/2">
406
+ <div class="bg-gray-800 rounded-xl p-8 project-card h-full">
407
+ <h3 class="text-xl font-semibold mb-6">Contact Information</h3>
408
+ <div class="space-y-6">
409
+ <div class="flex items-start">
410
+ <i class="fas fa-envelope text-blue-400 mt-1 mr-4"></i>
411
+ <div>
412
+ <h4 class="font-medium text-gray-200">Email</h4>
413
+ <a href="mailto:hello@v4ish.dev" class="text-gray-400 hover:text-blue-400 transition-colors">hello@v4ish.dev</a>
414
+ </div>
415
+ </div>
416
+ <div class="flex items-start">
417
+ <i class="fas fa-globe text-purple-400 mt-1 mr-4"></i>
418
+ <div>
419
+ <h4 class="font-medium text-gray-200">Website</h4>
420
+ <a href="https://v4ish.dev" class="text-gray-400 hover:text-purple-400 transition-colors">v4ish.dev</a>
421
+ </div>
422
+ </div>
423
+ <div class="flex items-start">
424
+ <i class="fab fa-github text-gray-300 mt-1 mr-4"></i>
425
+ <div>
426
+ <h4 class="font-medium text-gray-200">GitHub</h4>
427
+ <a href="https://github.com/v4ish" class="text-gray-400 hover:text-gray-200 transition-colors">github.com/v4ish</a>
428
+ </div>
429
+ </div>
430
+ <div class="flex items-start">
431
+ <i class="fab fa-twitter text-blue-400 mt-1 mr-4"></i>
432
+ <div>
433
+ <h4 class="font-medium text-gray-200">Twitter</h4>
434
+ <a href="https://twitter.com/v4ish" class="text-gray-400 hover:text-blue-400 transition-colors">@v4ish</a>
435
+ </div>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ <div class="md:w-1/2">
441
+ <form class="bg-gray-800 rounded-xl p-8 project-card">
442
+ <h3 class="text-xl font-semibold mb-6">Send Me a Message</h3>
443
+ <div class="space-y-6">
444
+ <div>
445
+ <label for="name" class="block text-sm font-medium text-gray-300 mb-2">Name</label>
446
+ <input type="text" id="name" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-md text-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your name">
447
+ </div>
448
+ <div>
449
+ <label for="email" class="block text-sm font-medium text-gray-300 mb-2">Email</label>
450
+ <input type="email" id="email" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-md text-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="your@email.com">
451
+ </div>
452
+ <div>
453
+ <label for="message" class="block text-sm font-medium text-gray-300 mb-2">Message</label>
454
+ <textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-md text-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your message"></textarea>
455
+ </div>
456
+ <button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-600 rounded-md text-white font-medium hover:opacity-90 transition-opacity">
457
+ Send Message
458
+ </button>
459
+ </div>
460
+ </form>
461
+ </div>
462
+ </div>
463
+ </section>
464
+
465
+ <!-- Footer -->
466
+ <footer class="bg-black bg-opacity-50 py-12 px-4 sm:px-6 lg:px-8 border-t border-gray-800">
467
+ <div class="max-w-6xl mx-auto">
468
+ <div class="flex flex-col md:flex-row justify-between items-center">
469
+ <div class="mb-6 md:mb-0">
470
+ <span class="text-xl font-bold gradient-text">v4ish</span>
471
+ <p class="text-gray-400 mt-2">Building digital experiences that matter.</p>
472
+ </div>
473
+ <div class="flex space-x-6">
474
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
475
+ <i class="fab fa-github text-xl"></i>
476
+ </a>
477
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition-colors">
478
+ <i class="fab fa-twitter text-xl"></i>
479
+ </a>
480
+ <a href="#" class="text-gray-400 hover:text-blue-600 transition-colors">
481
+ <i class="fab fa-linkedin text-xl"></i>
482
+ </a>
483
+ <a href="#" class="text-gray-400 hover:text-pink-500 transition-colors">
484
+ <i class="fab fa-dribbble text-xl"></i>
485
+ </a>
486
+ </div>
487
+ </div>
488
+ <div class="mt-8 pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
489
+ <p>&copy; 2023 v4ish. All rights reserved.</p>
490
+ </div>
491
+ </div>
492
+ </footer>
493
+
494
+ <script>
495
+ // Mobile menu toggle
496
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
497
+ const menu = document.getElementById('mobile-menu');
498
+ menu.classList.toggle('hidden');
499
+ });
500
+
501
+ // Close mobile menu when clicking a link
502
+ document.querySelectorAll('#mobile-menu a').forEach(link => {
503
+ link.addEventListener('click', function() {
504
+ document.getElementById('mobile-menu').classList.add('hidden');
505
+ });
506
+ });
507
+
508
+ // Smooth scrolling for anchor links
509
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
510
+ anchor.addEventListener('click', function (e) {
511
+ e.preventDefault();
512
+
513
+ const targetId = this.getAttribute('href');
514
+ const targetElement = document.querySelector(targetId);
515
+
516
+ if (targetElement) {
517
+ window.scrollTo({
518
+ top: targetElement.offsetTop - 80,
519
+ behavior: 'smooth'
520
+ });
521
+ }
522
+ });
523
+ });
524
+
525
+ // Add shadow to navbar on scroll
526
+ window.addEventListener('scroll', function() {
527
+ const nav = document.querySelector('nav');
528
+ if (window.scrollY > 10) {
529
+ nav.classList.add('shadow-lg');
530
+ } else {
531
+ nav.classList.remove('shadow-lg');
532
+ }
533
+ });
534
+ </script>
535
+ <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=vmk1/v4ish" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
536
+ </html>