parixit8985 commited on
Commit
17a4da7
Β·
verified Β·
1 Parent(s): 678f941

create awesome flutter developer portfolio

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +351 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Flutterfolio Skybound Coder Showcase
3
- emoji: πŸƒ
4
- colorFrom: blue
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: Flutterfolio - Skybound Coder Showcase πŸš€
3
+ colorFrom: green
4
+ colorTo: gray
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,352 @@
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>Flutterfolio | Skybound Coder Portfolio</title>
7
+ <link rel="icon" type="image/x-icon" href="https://static.photos/blue/200x200/7">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
14
+ body {
15
+ font-family: 'Poppins', sans-serif;
16
+ }
17
+ .gradient-text {
18
+ background: linear-gradient(90deg, #4F46E5 0%, #06B6D4 100%);
19
+ -webkit-background-clip: text;
20
+ background-clip: text;
21
+ color: transparent;
22
+ }
23
+ .flutter-wave {
24
+ animation: wave 8s ease-in-out infinite;
25
+ }
26
+ @keyframes wave {
27
+ 0%, 100% { transform: rotate(0deg); }
28
+ 25% { transform: rotate(5deg); }
29
+ 75% { transform: rotate(-5deg); }
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="bg-gray-900 text-white">
34
+ <!-- Vanta.js Background -->
35
+ <div id="vanta-bg" class="fixed top-0 left-0 w-full h-full z-0"></div>
36
+
37
+ <!-- Main Content -->
38
+ <div class="relative z-10 min-h-screen flex flex-col">
39
+ <!-- Navigation -->
40
+ <nav class="py-6 px-4 sm:px-8 lg:px-16 backdrop-blur-md bg-gray-900/50 border-b border-gray-800">
41
+ <div class="flex justify-between items-center">
42
+ <div class="flex items-center space-x-2">
43
+ <i data-feather="dribbble" class="text-blue-400 w-6 h-6"></i>
44
+ <span class="text-xl font-bold gradient-text">Flutterfolio</span>
45
+ </div>
46
+ <div class="hidden md:flex space-x-8">
47
+ <a href="#about" class="hover:text-blue-400 transition">About</a>
48
+ <a href="#projects" class="hover:text-blue-400 transition">Projects</a>
49
+ <a href="#skills" class="hover:text-blue-400 transition">Skills</a>
50
+ <a href="#contact" class="hover:text-blue-400 transition">Contact</a>
51
+ </div>
52
+ <button class="md:hidden" id="menu-toggle">
53
+ <i data-feather="menu" class="w-6 h-6"></i>
54
+ </button>
55
+ </div>
56
+ </nav>
57
+
58
+ <!-- Hero Section -->
59
+ <section class="flex-grow flex items-center px-4 sm:px-8 lg:px-16 py-16">
60
+ <div class="max-w-4xl mx-auto text-center">
61
+ <div class="flutter-wave inline-block mb-6">
62
+ <img src="https://static.photos/technology/200x200/42" alt="Flutter" class="w-24 h-24 rounded-full border-4 border-blue-400/50">
63
+ </div>
64
+ <h1 class="text-4xl sm:text-5xl md:text-6xl font-bold mb-4">
65
+ <span class="gradient-text">Flutter</span> Developer
66
+ </h1>
67
+ <p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto">
68
+ Crafting beautiful, high-performance cross-platform applications with Flutter & Dart.
69
+ </p>
70
+ <div class="flex justify-center space-x-4">
71
+ <a href="#projects" class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium transition">
72
+ View My Work
73
+ </a>
74
+ <a href="#contact" class="px-6 py-3 border border-blue-400 text-blue-400 hover:bg-blue-400/10 rounded-lg font-medium transition">
75
+ Contact Me
76
+ </a>
77
+ </div>
78
+ </div>
79
+ </section>
80
+
81
+ <!-- About Section -->
82
+ <section id="about" class="py-16 px-4 sm:px-8 lg:px-16 bg-gray-800/50 backdrop-blur-sm">
83
+ <div class="max-w-6xl mx-auto">
84
+ <h2 class="text-3xl font-bold mb-12 text-center">About <span class="gradient-text">Me</span></h2>
85
+ <div class="flex flex-col md:flex-row items-center gap-12">
86
+ <div class="md:w-1/3">
87
+ <img src="https://static.photos/people/640x360/23" alt="Developer" class="rounded-xl shadow-2xl w-full">
88
+ </div>
89
+ <div class="md:w-2/3">
90
+ <h3 class="text-2xl font-semibold mb-4">I turn ideas into pixel-perfect apps</h3>
91
+ <p class="text-gray-300 mb-6">
92
+ With over 3 years of experience in Flutter development, I've helped startups and enterprises build beautiful, responsive, and scalable mobile applications. I specialize in creating intuitive user interfaces and seamless user experiences.
93
+ </p>
94
+ <div class="grid grid-cols-2 gap-4">
95
+ <div class="flex items-center space-x-2">
96
+ <i data-feather="code" class="text-blue-400"></i>
97
+ <span>Flutter & Dart</span>
98
+ </div>
99
+ <div class="flex items-center space-x-2">
100
+ <i data-feather="smartphone" class="text-blue-400"></i>
101
+ <span>iOS & Android</span>
102
+ </div>
103
+ <div class="flex items-center space-x-2">
104
+ <i data-feather="database" class="text-blue-400"></i>
105
+ <span>Firebase</span>
106
+ </div>
107
+ <div class="flex items-center space-x-2">
108
+ <i data-feather="cpu" class="text-blue-400"></i>
109
+ <span>State Management</span>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </section>
116
+
117
+ <!-- Projects Section -->
118
+ <section id="projects" class="py-16 px-4 sm:px-8 lg:px-16">
119
+ <div class="max-w-6xl mx-auto">
120
+ <h2 class="text-3xl font-bold mb-12 text-center">My <span class="gradient-text">Projects</span></h2>
121
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
122
+ <!-- Project 1 -->
123
+ <div class="bg-gray-800/50 rounded-xl overflow-hidden shadow-xl hover:shadow-2xl transition">
124
+ <img src="https://static.photos/technology/640x360/1" alt="E-commerce App" class="w-full h-48 object-cover">
125
+ <div class="p-6">
126
+ <h3 class="text-xl font-semibold mb-2">ShopNest E-commerce</h3>
127
+ <p class="text-gray-300 mb-4">A complete shopping app with payment integration, product catalog, and user profiles.</p>
128
+ <div class="flex flex-wrap gap-2 mb-4">
129
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">Flutter</span>
130
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">Firebase</span>
131
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">BLoC</span>
132
+ </div>
133
+ <a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
134
+ View Project <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
135
+ </a>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Project 2 -->
140
+ <div class="bg-gray-800/50 rounded-xl overflow-hidden shadow-xl hover:shadow-2xl transition">
141
+ <img src="https://static.photos/technology/640x360/2" alt="Fitness App" class="w-full h-48 object-cover">
142
+ <div class="p-6">
143
+ <h3 class="text-xl font-semibold mb-2">FitTrack Pro</h3>
144
+ <p class="text-gray-300 mb-4">AI-powered fitness tracker with workout plans, nutrition logging, and progress analytics.</p>
145
+ <div class="flex flex-wrap gap-2 mb-4">
146
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">Flutter</span>
147
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">TensorFlow Lite</span>
148
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">Riverpod</span>
149
+ </div>
150
+ <a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
151
+ View Project <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
152
+ </a>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Project 3 -->
157
+ <div class="bg-gray-800/50 rounded-xl overflow-hidden shadow-xl hover:shadow-2xl transition">
158
+ <img src="https://static.photos/technology/640x360/3" alt="Social Media App" class="w-full h-48 object-cover">
159
+ <div class="p-6">
160
+ <h3 class="text-xl font-semibold mb-2">ConnectSphere</h3>
161
+ <p class="text-gray-300 mb-4">A social networking platform with real-time chat, stories, and content sharing.</p>
162
+ <div class="flex flex-wrap gap-2 mb-4">
163
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">Flutter</span>
164
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">Firestore</span>
165
+ <span class="px-3 py-1 bg-blue-900/50 text-blue-300 rounded-full text-sm">GetX</span>
166
+ </div>
167
+ <a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
168
+ View Project <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
169
+ </a>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </section>
175
+
176
+ <!-- Skills Section -->
177
+ <section id="skills" class="py-16 px-4 sm:px-8 lg:px-16 bg-gray-800/50 backdrop-blur-sm">
178
+ <div class="max-w-6xl mx-auto">
179
+ <h2 class="text-3xl font-bold mb-12 text-center">My <span class="gradient-text">Skills</span></h2>
180
+ <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
181
+ <!-- Skill 1 -->
182
+ <div class="bg-gray-900/50 p-6 rounded-xl border border-gray-800 hover:border-blue-400 transition">
183
+ <div class="w-14 h-14 bg-blue-900/20 rounded-lg flex items-center justify-center mb-4">
184
+ <img src="https://cdn.worldvectorlogo.com/logos/flutter-logo.svg" alt="Flutter" class="w-8 h-8">
185
+ </div>
186
+ <h3 class="font-semibold mb-2">Flutter Development</h3>
187
+ <p class="text-gray-400 text-sm">Cross-platform mobile apps with beautiful UIs and native performance</p>
188
+ </div>
189
+
190
+ <!-- Skill 2 -->
191
+ <div class="bg-gray-900/50 p-6 rounded-xl border border-gray-800 hover:border-blue-400 transition">
192
+ <div class="w-14 h-14 bg-blue-900/20 rounded-lg flex items-center justify-center mb-4">
193
+ <i data-feather="cpu" class="text-blue-400 w-8 h-8"></i>
194
+ </div>
195
+ <h3 class="font-semibold mb-2">State Management</h3>
196
+ <p class="text-gray-400 text-sm">Expertise in BLoC, Riverpod, Provider, GetX, and Redux</p>
197
+ </div>
198
+
199
+ <!-- Skill 3 -->
200
+ <div class="bg-gray-900/50 p-6 rounded-xl border border-gray-800 hover:border-blue-400 transition">
201
+ <div class="w-14 h-14 bg-blue-900/20 rounded-lg flex items-center justify-center mb-4">
202
+ <i data-feather="database" class="text-blue-400 w-8 h-8"></i>
203
+ </div>
204
+ <h3 class="font-semibold mb-2">Backend Integration</h3>
205
+ <p class="text-gray-400 text-sm">Firebase, REST APIs, GraphQL, and WebSockets</p>
206
+ </div>
207
+
208
+ <!-- Skill 4 -->
209
+ <div class="bg-gray-900/50 p-6 rounded-xl border border-gray-800 hover:border-blue-400 transition">
210
+ <div class="w-14 h-14 bg-blue-900/20 rounded-lg flex items-center justify-center mb-4">
211
+ <i data-feather="figma" class="text-blue-400 w-8 h-8"></i>
212
+ </div>
213
+ <h3 class="font-semibold mb-2">UI/UX Design</h3>
214
+ <p class="text-gray-400 text-sm">Creating intuitive interfaces with Figma and Adobe XD</p>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ </section>
219
+
220
+ <!-- Contact Section -->
221
+ <section id="contact" class="py-16 px-4 sm:px-8 lg:px-16">
222
+ <div class="max-w-4xl mx-auto">
223
+ <h2 class="text-3xl font-bold mb-12 text-center">Get In <span class="gradient-text">Touch</span></h2>
224
+ <div class="bg-gray-800/50 rounded-xl p-8 shadow-xl">
225
+ <form class="space-y-6">
226
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
227
+ <div>
228
+ <label for="name" class="block mb-2 text-sm font-medium text-gray-300">Your Name</label>
229
+ <input type="text" id="name" class="w-full px-4 py-3 bg-gray-700/50 border border-gray-700 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition" placeholder="John Doe">
230
+ </div>
231
+ <div>
232
+ <label for="email" class="block mb-2 text-sm font-medium text-gray-300">Your Email</label>
233
+ <input type="email" id="email" class="w-full px-4 py-3 bg-gray-700/50 border border-gray-700 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition" placeholder="john@example.com">
234
+ </div>
235
+ </div>
236
+ <div>
237
+ <label for="subject" class="block mb-2 text-sm font-medium text-gray-300">Subject</label>
238
+ <input type="text" id="subject" class="w-full px-4 py-3 bg-gray-700/50 border border-gray-700 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition" placeholder="Project Inquiry">
239
+ </div>
240
+ <div>
241
+ <label for="message" class="block mb-2 text-sm font-medium text-gray-300">Your Message</label>
242
+ <textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-700/50 border border-gray-700 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition" placeholder="Describe your project..."></textarea>
243
+ </div>
244
+ <button type="submit" class="w-full px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium transition">
245
+ Send Message
246
+ </button>
247
+ </form>
248
+ <div class="mt-10 grid grid-cols-1 md:grid-cols-3 gap-6">
249
+ <div class="flex items-center space-x-4">
250
+ <div class="w-12 h-12 bg-blue-900/20 rounded-full flex items-center justify-center">
251
+ <i data-feather="mail" class="text-blue-400"></i>
252
+ </div>
253
+ <div>
254
+ <h3 class="text-gray-300">Email</h3>
255
+ <p class="text-blue-400">hello@flutterfolio.dev</p>
256
+ </div>
257
+ </div>
258
+ <div class="flex items-center space-x-4">
259
+ <div class="w-12 h-12 bg-blue-900/20 rounded-full flex items-center justify-center">
260
+ <i data-feather="smartphone" class="text-blue-400"></i>
261
+ </div>
262
+ <div>
263
+ <h3 class="text-gray-300">Phone</h3>
264
+ <p class="text-blue-400">+1 (555) 123-4567</p>
265
+ </div>
266
+ </div>
267
+ <div class="flex items-center space-x-4">
268
+ <div class="w-12 h-12 bg-blue-900/20 rounded-full flex items-center justify-center">
269
+ <i data-feather="map-pin" class="text-blue-400"></i>
270
+ </div>
271
+ <div>
272
+ <h3 class="text-gray-300">Location</h3>
273
+ <p class="text-blue-400">San Francisco, CA</p>
274
+ </div>
275
+ </div>
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </section>
280
+
281
+ <!-- Footer -->
282
+ <footer class="py-8 px-4 sm:px-8 lg:px-16 border-t border-gray-800 mt-12">
283
+ <div class="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center">
284
+ <div class="flex items-center space-x-2 mb-4 md:mb-0">
285
+ <i data-feather="dribbble" class="text-blue-400 w-5 h-5"></i>
286
+ <span class="text-lg font-bold gradient-text">Flutterfolio</span>
287
+ </div>
288
+ <div class="text-gray-400 text-sm mb-4 md:mb-0">
289
+ &copy; 2023 Flutterfolio. All rights reserved.
290
+ </div>
291
+ <div class="flex space-x-6">
292
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
293
+ <i data-feather="github" class="w-5 h-5"></i>
294
+ </a>
295
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
296
+ <i data-feather="twitter" class="w-5 h-5"></i>
297
+ </a>
298
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
299
+ <i data-feather="linkedin" class="w-5 h-5"></i>
300
+ </a>
301
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
302
+ <i data-feather="instagram" class="w-5 h-5"></i>
303
+ </a>
304
+ </div>
305
+ </div>
306
+ </footer>
307
+ </div>
308
+
309
+ <script>
310
+ // Initialize Vanta.js background
311
+ VANTA.NET({
312
+ el: "#vanta-bg",
313
+ mouseControls: true,
314
+ touchControls: true,
315
+ gyroControls: false,
316
+ minHeight: 200.00,
317
+ minWidth: 200.00,
318
+ scale: 1.00,
319
+ scaleMobile: 1.00,
320
+ color: 0x3b82f6,
321
+ backgroundColor: 0x111827,
322
+ points: 10.00,
323
+ maxDistance: 20.00,
324
+ spacing: 15.00
325
+ });
326
+
327
+ // Initialize Feather Icons
328
+ feather.replace();
329
+
330
+ // Mobile menu toggle
331
+ document.getElementById('menu-toggle').addEventListener('click', function() {
332
+ const navLinks = document.querySelector('.md\\:flex.space-x-8');
333
+ if (navLinks.style.display === 'flex') {
334
+ navLinks.style.display = 'none';
335
+ } else {
336
+ navLinks.style.display = 'flex';
337
+ navLinks.classList.add('flex-col', 'absolute', 'top-16', 'right-4', 'bg-gray-900', 'p-4', 'rounded-lg', 'space-y-4', 'space-x-0', 'border', 'border-gray-800');
338
+ }
339
+ });
340
+
341
+ // Smooth scrolling for anchor links
342
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
343
+ anchor.addEventListener('click', function (e) {
344
+ e.preventDefault();
345
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
346
+ behavior: 'smooth'
347
+ });
348
+ });
349
+ });
350
+ </script>
351
+ </body>
352
  </html>