andreaschandra commited on
Commit
3a27a91
·
verified ·
1 Parent(s): 7e6f7d8

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +515 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Personal Page
3
- emoji: 😻
4
- colorFrom: purple
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: personal-page
3
+ emoji: 🐳
4
+ colorFrom: yellow
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,515 @@
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>John Doe | Software Engineer</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
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .gradient-text {
18
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
19
+ -webkit-background-clip: text;
20
+ background-clip: text;
21
+ color: transparent;
22
+ }
23
+
24
+ .project-card:hover {
25
+ transform: translateY(-5px);
26
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
27
+ }
28
+
29
+ .nav-link {
30
+ position: relative;
31
+ }
32
+
33
+ .nav-link::after {
34
+ content: '';
35
+ position: absolute;
36
+ width: 0;
37
+ height: 2px;
38
+ bottom: -2px;
39
+ left: 0;
40
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
41
+ transition: width 0.3s ease;
42
+ }
43
+
44
+ .nav-link:hover::after {
45
+ width: 100%;
46
+ }
47
+
48
+ .timeline-item::before {
49
+ content: '';
50
+ position: absolute;
51
+ left: -20px;
52
+ top: 0;
53
+ width: 12px;
54
+ height: 12px;
55
+ border-radius: 50%;
56
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
57
+ }
58
+ </style>
59
+ </head>
60
+ <body class="bg-gray-50 text-gray-800">
61
+ <!-- Navigation -->
62
+ <nav class="fixed w-full bg-white shadow-sm z-50">
63
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
64
+ <div class="flex justify-between h-16">
65
+ <div class="flex items-center">
66
+ <span class="text-xl font-bold gradient-text">JD</span>
67
+ </div>
68
+ <div class="hidden md:flex items-center space-x-8">
69
+ <a href="#home" class="nav-link text-gray-700 hover:text-gray-900">Home</a>
70
+ <a href="#projects" class="nav-link text-gray-700 hover:text-gray-900">Projects</a>
71
+ <a href="#resume" class="nav-link text-gray-700 hover:text-gray-900">Resume</a>
72
+ <a href="#contact" class="nav-link text-gray-700 hover:text-gray-900">Contact</a>
73
+ </div>
74
+ <div class="md:hidden flex items-center">
75
+ <button id="menu-btn" class="text-gray-500 hover:text-gray-900">
76
+ <i class="fas fa-bars text-xl"></i>
77
+ </button>
78
+ </div>
79
+ </div>
80
+ </div>
81
+
82
+ <!-- Mobile menu -->
83
+ <div id="mobile-menu" class="hidden md:hidden bg-white pb-4 px-4 shadow-lg">
84
+ <a href="#home" class="block py-2 text-gray-700 hover:text-gray-900">Home</a>
85
+ <a href="#projects" class="block py-2 text-gray-700 hover:text-gray-900">Projects</a>
86
+ <a href="#resume" class="block py-2 text-gray-700 hover:text-gray-900">Resume</a>
87
+ <a href="#contact" class="block py-2 text-gray-700 hover:text-gray-900">Contact</a>
88
+ </div>
89
+ </nav>
90
+
91
+ <!-- Hero Section -->
92
+ <section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
93
+ <div class="flex flex-col md:flex-row items-center">
94
+ <div class="md:w-1/2 mb-10 md:mb-0">
95
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Hi, I'm <span class="gradient-text">John Doe</span></h1>
96
+ <h2 class="text-2xl md:text-3xl font-semibold text-gray-600 mb-6">Full Stack Developer</h2>
97
+ <p class="text-gray-600 mb-8 max-w-lg">
98
+ I build exceptional digital experiences with clean, efficient code.
99
+ Passionate about solving complex problems and creating intuitive user interfaces.
100
+ </p>
101
+ <div class="flex space-x-4">
102
+ <a href="#projects" class="px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-lg font-medium hover:opacity-90 transition">
103
+ View Projects
104
+ </a>
105
+ <a href="#contact" class="px-6 py-3 border border-gray-300 rounded-lg font-medium hover:bg-gray-100 transition">
106
+ Contact Me
107
+ </a>
108
+ </div>
109
+ </div>
110
+ <div class="md:w-1/2 flex justify-center">
111
+ <div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-white shadow-xl">
112
+ <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80"
113
+ alt="John Doe" class="w-full h-full object-cover">
114
+ </div>
115
+ </div>
116
+ </div>
117
+ </section>
118
+
119
+ <!-- Projects Section -->
120
+ <section id="projects" class="py-16 bg-gray-100">
121
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
122
+ <div class="text-center mb-16">
123
+ <h2 class="text-3xl font-bold mb-4">Featured <span class="gradient-text">Projects</span></h2>
124
+ <p class="text-gray-600 max-w-2xl mx-auto">
125
+ Here are some of my recent projects that showcase my skills and expertise.
126
+ </p>
127
+ </div>
128
+
129
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
130
+ <!-- Project 1 -->
131
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
132
+ <div class="h-48 bg-gradient-to-r from-blue-400 to-purple-500 flex items-center justify-center">
133
+ <i class="fas fa-laptop-code text-white text-6xl"></i>
134
+ </div>
135
+ <div class="p-6">
136
+ <h3 class="text-xl font-bold mb-2">E-Commerce Platform</h3>
137
+ <p class="text-gray-600 mb-4">
138
+ A full-featured e-commerce platform with payment integration, product management, and user authentication.
139
+ </p>
140
+ <div class="flex flex-wrap gap-2 mb-4">
141
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">React</span>
142
+ <span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">Node.js</span>
143
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-xs font-medium rounded-full">MongoDB</span>
144
+ <span class="px-3 py-1 bg-red-100 text-red-800 text-xs font-medium rounded-full">Stripe API</span>
145
+ </div>
146
+ <div class="flex space-x-3">
147
+ <a href="#" class="text-blue-500 hover:text-blue-700">
148
+ <i class="fas fa-external-link-alt"></i> Live Demo
149
+ </a>
150
+ <a href="#" class="text-gray-500 hover:text-gray-700">
151
+ <i class="fab fa-github"></i> Source Code
152
+ </a>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <!-- Project 2 -->
158
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
159
+ <div class="h-48 bg-gradient-to-r from-green-400 to-blue-500 flex items-center justify-center">
160
+ <i class="fas fa-mobile-alt text-white text-6xl"></i>
161
+ </div>
162
+ <div class="p-6">
163
+ <h3 class="text-xl font-bold mb-2">Fitness Tracker App</h3>
164
+ <p class="text-gray-600 mb-4">
165
+ A mobile application for tracking workouts, nutrition, and progress with data visualization.
166
+ </p>
167
+ <div class="flex flex-wrap gap-2 mb-4">
168
+ <span class="px-3 py-1 bg-purple-100 text-purple-800 text-xs font-medium rounded-full">React Native</span>
169
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">Firebase</span>
170
+ <span class="px-3 py-1 bg-pink-100 text-pink-800 text-xs font-medium rounded-full">D3.js</span>
171
+ </div>
172
+ <div class="flex space-x-3">
173
+ <a href="#" class="text-blue-500 hover:text-blue-700">
174
+ <i class="fas fa-external-link-alt"></i> Live Demo
175
+ </a>
176
+ <a href="#" class="text-gray-500 hover:text-gray-700">
177
+ <i class="fab fa-github"></i> Source Code
178
+ </a>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Project 3 -->
184
+ <div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
185
+ <div class="h-48 bg-gradient-to-r from-purple-500 to-pink-500 flex items-center justify-center">
186
+ <i class="fas fa-chart-line text-white text-6xl"></i>
187
+ </div>
188
+ <div class="p-6">
189
+ <h3 class="text-xl font-bold mb-2">Data Analytics Dashboard</h3>
190
+ <p class="text-gray-600 mb-4">
191
+ A real-time analytics dashboard with interactive visualizations and custom reporting features.
192
+ </p>
193
+ <div class="flex flex-wrap gap-2 mb-4">
194
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">Vue.js</span>
195
+ <span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">Python</span>
196
+ <span class="px-3 py-1 bg-red-100 text-red-800 text-xs font-medium rounded-full">PostgreSQL</span>
197
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-xs font-medium rounded-full">Chart.js</span>
198
+ </div>
199
+ <div class="flex space-x-3">
200
+ <a href="#" class="text-blue-500 hover:text-blue-700">
201
+ <i class="fas fa-external-link-alt"></i> Live Demo
202
+ </a>
203
+ <a href="#" class="text-gray-500 hover:text-gray-700">
204
+ <i class="fab fa-github"></i> Source Code
205
+ </a>
206
+ </div>
207
+ </div>
208
+ </div>
209
+ </div>
210
+
211
+ <div class="text-center mt-12">
212
+ <a href="#" class="inline-block px-6 py-3 border border-gray-300 rounded-lg font-medium hover:bg-gray-100 transition">
213
+ View All Projects
214
+ </a>
215
+ </div>
216
+ </div>
217
+ </section>
218
+
219
+ <!-- Resume Section -->
220
+ <section id="resume" class="py-16">
221
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
222
+ <div class="text-center mb-16">
223
+ <h2 class="text-3xl font-bold mb-4">My <span class="gradient-text">Resume</span></h2>
224
+ <p class="text-gray-600 max-w-2xl mx-auto">
225
+ My professional journey and the skills I've acquired along the way.
226
+ </p>
227
+ </div>
228
+
229
+ <div class="flex flex-col md:flex-row gap-8">
230
+ <!-- Experience -->
231
+ <div class="md:w-1/2">
232
+ <h3 class="text-2xl font-bold mb-6 flex items-center">
233
+ <i class="fas fa-briefcase mr-3 text-blue-500"></i> Experience
234
+ </h3>
235
+
236
+ <div class="relative pl-8 border-l-2 border-gray-200 space-y-8">
237
+ <!-- Experience 1 -->
238
+ <div class="timeline-item relative">
239
+ <div class="bg-white p-6 rounded-lg shadow-sm">
240
+ <h4 class="font-bold text-lg mb-1">Senior Software Engineer</h4>
241
+ <div class="text-blue-500 mb-2">Tech Solutions Inc. • 2020 - Present</div>
242
+ <p class="text-gray-600">
243
+ Lead development of enterprise applications, mentor junior developers, and implement CI/CD pipelines.
244
+ </p>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Experience 2 -->
249
+ <div class="timeline-item relative">
250
+ <div class="bg-white p-6 rounded-lg shadow-sm">
251
+ <h4 class="font-bold text-lg mb-1">Software Developer</h4>
252
+ <div class="text-blue-500 mb-2">Digital Innovations • 2017 - 2020</div>
253
+ <p class="text-gray-600">
254
+ Developed web applications using React and Node.js, optimized database performance, and implemented RESTful APIs.
255
+ </p>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Experience 3 -->
260
+ <div class="timeline-item relative">
261
+ <div class="bg-white p-6 rounded-lg shadow-sm">
262
+ <h4 class="font-bold text-lg mb-1">Junior Developer</h4>
263
+ <div class="text-blue-500 mb-2">StartUp Labs • 2015 - 2017</div>
264
+ <p class="text-gray-600">
265
+ Assisted in front-end development, fixed bugs, and contributed to agile development processes.
266
+ </p>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <!-- Education & Skills -->
273
+ <div class="md:w-1/2">
274
+ <h3 class="text-2xl font-bold mb-6 flex items-center">
275
+ <i class="fas fa-graduation-cap mr-3 text-purple-500"></i> Education
276
+ </h3>
277
+
278
+ <div class="relative pl-8 border-l-2 border-gray-200 space-y-8 mb-12">
279
+ <!-- Education 1 -->
280
+ <div class="timeline-item relative">
281
+ <div class="bg-white p-6 rounded-lg shadow-sm">
282
+ <h4 class="font-bold text-lg mb-1">MSc in Computer Science</h4>
283
+ <div class="text-purple-500 mb-2">Stanford University • 2013 - 2015</div>
284
+ <p class="text-gray-600">
285
+ Specialized in Artificial Intelligence and Machine Learning with a 4.0 GPA.
286
+ </p>
287
+ </div>
288
+ </div>
289
+
290
+ <!-- Education 2 -->
291
+ <div class="timeline-item relative">
292
+ <div class="bg-white p-6 rounded-lg shadow-sm">
293
+ <h4 class="font-bold text-lg mb-1">BSc in Software Engineering</h4>
294
+ <div class="text-purple-500 mb-2">MIT • 2009 - 2013</div>
295
+ <p class="text-gray-600">
296
+ Graduated with honors. Focus on web technologies and software architecture.
297
+ </p>
298
+ </div>
299
+ </div>
300
+ </div>
301
+
302
+ <h3 class="text-2xl font-bold mb-6 flex items-center">
303
+ <i class="fas fa-code mr-3 text-green-500"></i> Skills
304
+ </h3>
305
+
306
+ <div class="bg-white p-6 rounded-lg shadow-sm">
307
+ <div class="mb-6">
308
+ <h4 class="font-medium mb-3">Frontend</h4>
309
+ <div class="flex flex-wrap gap-2">
310
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full">React</span>
311
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 rounded-full">JavaScript</span>
312
+ <span class="px-3 py-1 bg-green-100 text-green-800 rounded-full">Vue.js</span>
313
+ <span class="px-3 py-1 bg-red-100 text-red-800 rounded-full">TypeScript</span>
314
+ <span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">Tailwind CSS</span>
315
+ </div>
316
+ </div>
317
+
318
+ <div class="mb-6">
319
+ <h4 class="font-medium mb-3">Backend</h4>
320
+ <div class="flex flex-wrap gap-2">
321
+ <span class="px-3 py-1 bg-green-100 text-green-800 rounded-full">Node.js</span>
322
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full">Python</span>
323
+ <span class="px-3 py-1 bg-red-100 text-red-800 rounded-full">Java</span>
324
+ <span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">Express</span>
325
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 rounded-full">Django</span>
326
+ </div>
327
+ </div>
328
+
329
+ <div>
330
+ <h4 class="font-medium mb-3">Other</h4>
331
+ <div class="flex flex-wrap gap-2">
332
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full">Docker</span>
333
+ <span class="px-3 py-1 bg-green-100 text-green-800 rounded-full">AWS</span>
334
+ <span class="px-3 py-1 bg-red-100 text-red-800 rounded-full">Git</span>
335
+ <span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">MongoDB</span>
336
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 rounded-full">PostgreSQL</span>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </div>
341
+ </div>
342
+
343
+ <div class="text-center mt-12">
344
+ <a href="#" class="inline-flex items-center px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-lg font-medium hover:opacity-90 transition">
345
+ <i class="fas fa-download mr-2"></i> Download Full Resume
346
+ </a>
347
+ </div>
348
+ </div>
349
+ </section>
350
+
351
+ <!-- Contact Section -->
352
+ <section id="contact" class="py-16 bg-gray-100">
353
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
354
+ <div class="text-center mb-16">
355
+ <h2 class="text-3xl font-bold mb-4">Get In <span class="gradient-text">Touch</span></h2>
356
+ <p class="text-gray-600 max-w-2xl mx-auto">
357
+ Have a project in mind or want to discuss potential opportunities? Feel free to reach out!
358
+ </p>
359
+ </div>
360
+
361
+ <div class="flex flex-col md:flex-row gap-12">
362
+ <div class="md:w-1/2">
363
+ <form class="space-y-6">
364
+ <div>
365
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
366
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition">
367
+ </div>
368
+
369
+ <div>
370
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
371
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition">
372
+ </div>
373
+
374
+ <div>
375
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
376
+ <textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"></textarea>
377
+ </div>
378
+
379
+ <button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-lg font-medium hover:opacity-90 transition">
380
+ Send Message
381
+ </button>
382
+ </form>
383
+ </div>
384
+
385
+ <div class="md:w-1/2">
386
+ <div class="bg-white p-8 rounded-xl shadow-sm h-full">
387
+ <h3 class="text-xl font-bold mb-6">Contact Information</h3>
388
+
389
+ <div class="space-y-6">
390
+ <div class="flex items-start">
391
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-500">
392
+ <i class="fas fa-envelope"></i>
393
+ </div>
394
+ <div class="ml-4">
395
+ <h4 class="font-medium text-gray-900">Email</h4>
396
+ <p class="text-gray-600">[email protected]</p>
397
+ </div>
398
+ </div>
399
+
400
+ <div class="flex items-start">
401
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-500">
402
+ <i class="fas fa-phone-alt"></i>
403
+ </div>
404
+ <div class="ml-4">
405
+ <h4 class="font-medium text-gray-900">Phone</h4>
406
+ <p class="text-gray-600">+1 (555) 123-4567</p>
407
+ </div>
408
+ </div>
409
+
410
+ <div class="flex items-start">
411
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-green-100 flex items-center justify-center text-green-500">
412
+ <i class="fas fa-map-marker-alt"></i>
413
+ </div>
414
+ <div class="ml-4">
415
+ <h4 class="font-medium text-gray-900">Location</h4>
416
+ <p class="text-gray-600">San Francisco, CA</p>
417
+ </div>
418
+ </div>
419
+ </div>
420
+
421
+ <div class="mt-8">
422
+ <h4 class="font-medium text-gray-900 mb-4">Connect with me</h4>
423
+ <div class="flex space-x-4">
424
+ <a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-blue-100 hover:text-blue-500 transition">
425
+ <i class="fab fa-linkedin-in"></i>
426
+ </a>
427
+ <a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-gray-800 hover:text-white transition">
428
+ <i class="fab fa-github"></i>
429
+ </a>
430
+ <a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-blue-500 hover:text-white transition">
431
+ <i class="fab fa-twitter"></i>
432
+ </a>
433
+ <a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-red-500 hover:text-white transition">
434
+ <i class="fab fa-youtube"></i>
435
+ </a>
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ </div>
441
+ </div>
442
+ </section>
443
+
444
+ <!-- Footer -->
445
+ <footer class="bg-gray-900 text-white py-8">
446
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
447
+ <div class="flex flex-col md:flex-row justify-between items-center">
448
+ <div class="mb-4 md:mb-0">
449
+ <span class="text-xl font-bold gradient-text">John Doe</span>
450
+ <p class="text-gray-400 mt-1">Building digital experiences that matter.</p>
451
+ </div>
452
+
453
+ <div class="flex space-x-6">
454
+ <a href="#" class="text-gray-400 hover:text-white transition">
455
+ <i class="fab fa-linkedin-in"></i>
456
+ </a>
457
+ <a href="#" class="text-gray-400 hover:text-white transition">
458
+ <i class="fab fa-github"></i>
459
+ </a>
460
+ <a href="#" class="text-gray-400 hover:text-white transition">
461
+ <i class="fab fa-twitter"></i>
462
+ </a>
463
+ <a href="#" class="text-gray-400 hover:text-white transition">
464
+ <i class="fab fa-instagram"></i>
465
+ </a>
466
+ </div>
467
+ </div>
468
+
469
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400 text-sm">
470
+ <p>&copy; 2023 John Doe. All rights reserved.</p>
471
+ </div>
472
+ </div>
473
+ </footer>
474
+
475
+ <script>
476
+ // Mobile menu toggle
477
+ document.getElementById('menu-btn').addEventListener('click', function() {
478
+ const menu = document.getElementById('mobile-menu');
479
+ menu.classList.toggle('hidden');
480
+ });
481
+
482
+ // Smooth scrolling for navigation links
483
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
484
+ anchor.addEventListener('click', function (e) {
485
+ e.preventDefault();
486
+
487
+ const targetId = this.getAttribute('href');
488
+ const targetElement = document.querySelector(targetId);
489
+
490
+ if (targetElement) {
491
+ // Close mobile menu if open
492
+ const mobileMenu = document.getElementById('mobile-menu');
493
+ mobileMenu.classList.add('hidden');
494
+
495
+ // Scroll to target
496
+ window.scrollTo({
497
+ top: targetElement.offsetTop - 80,
498
+ behavior: 'smooth'
499
+ });
500
+ }
501
+ });
502
+ });
503
+
504
+ // Add shadow to navbar on scroll
505
+ window.addEventListener('scroll', function() {
506
+ const nav = document.querySelector('nav');
507
+ if (window.scrollY > 10) {
508
+ nav.classList.add('shadow-lg');
509
+ } else {
510
+ nav.classList.remove('shadow-lg');
511
+ }
512
+ });
513
+ </script>
514
+ <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=andreaschandra/personal-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
515
+ </html>