Harvinderkno commited on
Commit
8245b37
·
verified ·
1 Parent(s): 18f0041

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +411 -315
  2. prompts.txt +3 -1
index.html CHANGED
@@ -3,416 +3,512 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Sean - Web Designer</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;600;700&display=swap');
11
-
12
  body {
13
  font-family: 'Inter', sans-serif;
14
- background-color: #f8f8f8;
15
- }
16
-
17
- .graphic-bg {
18
- position: absolute;
19
- opacity: 0.03;
20
- font-size: 12rem;
21
- font-weight: 900;
22
- white-space: nowrap;
23
- z-index: -1;
24
- color: #000;
25
- pointer-events: none;
26
- user-select: none;
27
  }
28
-
29
- .progress-bar {
30
  height: 8px;
31
- background-color: #e0e0e0;
32
- border-radius: 4px;
33
- overflow: hidden;
34
- }
35
-
36
- .progress-fill {
37
- height: 100%;
38
- background-color: #3b82f6;
39
- transition: width 1s ease-in-out;
40
  }
41
-
42
- .project-card {
43
- transition: transform 0.3s ease, box-shadow 0.3s ease;
44
- }
45
-
46
- .project-card:hover {
47
- transform: translateY(-5px);
48
- box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
49
  }
50
-
51
- .checkbox {
52
- width: 20px;
53
- height: 20px;
54
- border: 2px solid #000;
55
- display: inline-flex;
56
- align-items: center;
57
- justify-content: center;
58
- margin-right: 5px;
59
  }
60
-
61
- .checkbox.checked {
62
  background-color: #000;
 
63
  }
64
-
65
- .nav-link {
66
- position: relative;
67
  }
68
-
69
- .nav-link::after {
70
- content: '';
71
- position: absolute;
72
- width: 0;
73
- height: 2px;
74
- bottom: -2px;
75
- left: 0;
76
- background-color: #3b82f6;
77
- transition: width 0.3s ease;
78
  }
79
-
80
- .nav-link:hover::after {
81
- width: 100%;
 
 
 
 
 
82
  }
83
  </style>
84
  </head>
85
- <body class="text-gray-900">
86
- <!-- Navigation -->
87
- <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
88
- <div class="text-2xl font-bold">SEAN</div>
89
- <div class="hidden md:flex space-x-8">
90
- <a href="#home" class="nav-link">Home</a>
91
- <a href="#portfolio" class="nav-link">Portfolio</a>
92
- <a href="#about" class="nav-link">About</a>
93
- <a href="#skills" class="nav-link">Skills</a>
94
- <a href="#contact" class="nav-link">Contact</a>
95
  </div>
96
- <button class="md:hidden">
97
- <i class="fas fa-bars text-2xl"></i>
98
- </button>
99
- </nav>
100
 
101
  <!-- Hero Section -->
102
- <section id="home" class="container mx-auto px-6 py-20 relative overflow-hidden">
103
- <div class="graphic-bg" style="top: 20%; left: -10%;">GRAPHIC WEB PRODUC</div>
104
- <div class="graphic-bg" style="top: 60%; right: -10%; transform: rotate(15deg);">GRAPHIC WEB PRODUC</div>
105
-
106
- <div class="max-w-3xl">
107
- <h1 class="text-5xl md:text-7xl font-bold mb-6">Hey — I'm Sean. A New York-based Web Designer.</h1>
108
- <p class="text-xl text-gray-600 mb-8">Experienced designer known for creating digital solutions with a solid product strategy.</p>
109
-
110
- <div class="flex items-center mb-12">
111
- <span class="mr-4">Available for work:</span>
112
- <div class="checkbox checked"></div>
113
- <div class="checkbox"></div>
114
- <div class="checkbox checked"></div>
115
- <div class="checkbox"></div>
116
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
- <div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-20">
119
- <div class="border-2 border-black p-6 text-center hover:bg-black hover:text-white transition-colors">
120
- <i class="fas fa-globe text-3xl mb-2"></i>
121
- <p>Web</p>
 
 
 
 
 
 
 
122
  </div>
123
- <div class="border-2 border-black p-6 text-center hover:bg-black hover:text-white transition-colors">
124
- <i class="fas fa-pen-fancy text-3xl mb-2"></i>
125
- <p>Graphic</p>
 
 
 
 
 
 
 
 
126
  </div>
127
- <div class="border-2 border-black p-6 text-center hover:bg-black hover:text-white transition-colors">
128
- <i class="fas fa-box-open text-3xl mb-2"></i>
129
- <p>Product</p>
 
 
 
 
 
 
 
 
130
  </div>
131
- <div class="border-2 border-black p-6 text-center hover:bg-black hover:text-white transition-colors">
132
- <i class="fas fa-trademark text-3xl mb-2"></i>
133
- <p>Brand</p>
 
 
 
 
 
 
 
 
134
  </div>
135
  </div>
136
  </div>
137
  </section>
138
 
139
  <!-- Portfolio Section -->
140
- <section id="portfolio" class="bg-white py-20">
141
- <div class="container mx-auto px-6">
142
- <h2 class="text-6xl font-bold mb-12">PORTFOLIO</h2>
143
 
144
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
145
  <!-- Project 1 -->
146
- <div class="project-card bg-white p-6 rounded-lg shadow-md">
147
- <div class="bg-gray-200 h-64 mb-4 rounded-lg"></div>
148
- <h3 class="text-xl font-semibold mb-2">E-commerce Platform</h3>
149
- <p class="text-gray-600">A modern online shopping experience</p>
 
 
 
 
150
  </div>
151
 
152
  <!-- Project 2 -->
153
- <div class="project-card bg-white p-6 rounded-lg shadow-md">
154
- <div class="bg-gray-200 h-64 mb-4 rounded-lg"></div>
155
- <h3 class="text-xl font-semibold mb-2">Mobile App Design</h3>
156
- <p class="text-gray-600">Fitness tracking application</p>
 
 
 
 
157
  </div>
158
 
159
  <!-- Project 3 -->
160
- <div class="project-card bg-white p-6 rounded-lg shadow-md">
161
- <div class="bg-gray-200 h-64 mb-4 rounded-lg"></div>
162
- <h3 class="text-xl font-semibold mb-2">Brand Identity</h3>
163
- <p class="text-gray-600">Complete branding package</p>
 
 
 
 
164
  </div>
165
 
166
  <!-- Project 4 -->
167
- <div class="project-card bg-white p-6 rounded-lg shadow-md">
168
- <div class="bg-gray-200 h-64 mb-4 rounded-lg"></div>
169
- <h3 class="text-xl font-semibold mb-2">Web Application</h3>
170
- <p class="text-gray-600">Project management tool</p>
 
 
 
 
171
  </div>
172
 
173
  <!-- Project 5 -->
174
- <div class="project-card bg-white p-6 rounded-lg shadow-md">
175
- <div class="bg-gray-200 h-64 mb-4 rounded-lg"></div>
176
- <h3 class="text-xl font-semibold mb-2">Illustration Series</h3>
177
- <p class="text-gray-600">Digital artwork collection</p>
 
 
 
 
178
  </div>
179
 
180
  <!-- Project 6 -->
181
- <div class="project-card bg-white p-6 rounded-lg shadow-md">
182
- <div class="bg-gray-200 h-64 mb-4 rounded-lg"></div>
183
- <h3 class="text-xl font-semibold mb-2">UI/UX Design</h3>
184
- <p class="text-gray-600">Banking app interface</p>
 
 
 
 
185
  </div>
186
  </div>
187
  </div>
188
  </section>
189
 
190
  <!-- About Section -->
191
- <section id="about" class="py-20 bg-gray-50">
192
- <div class="container mx-auto px-6">
193
- <h2 class="text-6xl font-bold mb-12">ABOUT</h2>
194
 
195
- <div class="max-w-3xl mb-16">
196
- <p class="text-xl text-gray-600">
197
- I'm a creative development individual eager to provide innovative solutions that bridge the gap between design and technology. With a passion for clean aesthetics and functional interfaces, I strive to create digital experiences that resonate with users.
198
- </p>
199
- </div>
200
-
201
- <h3 class="text-3xl font-semibold mb-8">Work Experience</h3>
202
-
203
- <div class="overflow-x-auto">
204
- <table class="min-w-full bg-white rounded-lg overflow-hidden">
205
- <thead class="bg-black text-white">
206
- <tr>
207
- <th class="py-4 px-6 text-left">COMPANY</th>
208
- <th class="py-4 px-6 text-left">POSITION</th>
209
- <th class="py-4 px-6 text-left">YEAR</th>
210
- </tr>
211
- </thead>
212
- <tbody>
213
- <tr class="border-b border-gray-200 hover:bg-gray-100">
214
- <td class="py-4 px-6">Massa Fames / New York</td>
215
- <td class="py-4 px-6">Junior Developer</td>
216
- <td class="py-4 px-6">2018</td>
217
- </tr>
218
- <tr class="border-b border-gray-200 hover:bg-gray-100">
219
- <td class="py-4 px-6">Lobrissa / Chicago</td>
220
- <td class="py-4 px-6">Junior Developer</td>
221
- <td class="py-4 px-6">2019</td>
222
- </tr>
223
- <tr class="border-b border-gray-200 hover:bg-gray-100">
224
- <td class="py-4 px-6">Fauzbusse / Seattle</td>
225
- <td class="py-4 px-6">C++ Developer</td>
226
- <td class="py-4 px-6">2021</td>
227
- </tr>
228
- <tr class="hover:bg-gray-100">
229
- <td class="py-4 px-6">Yivera Arcu / Seattle</td>
230
- <td class="py-4 px-6">Senior Developer</td>
231
- <td class="py-4 px-6">2024</td>
232
- </tr>
233
- </tbody>
234
- </table>
235
- </div>
236
- </div>
237
- </section>
238
-
239
- <!-- Skills Section -->
240
- <section id="skills" class="py-20 bg-white">
241
- <div class="container mx-auto px-6">
242
- <h2 class="text-6xl font-bold mb-12">SKILLS</h2>
243
-
244
- <div class="max-w-3xl space-y-8">
245
- <div>
246
- <div class="flex justify-between mb-2">
247
- <span>Graphic Design</span>
248
- <span>90%</span>
249
- </div>
250
- <div class="progress-bar">
251
- <div class="progress-fill" style="width: 90%;"></div>
252
- </div>
253
- </div>
254
-
255
- <div>
256
- <div class="flex justify-between mb-2">
257
- <span>HTML</span>
258
- <span>70%</span>
259
- </div>
260
- <div class="progress-bar">
261
- <div class="progress-fill" style="width: 70%;"></div>
262
- </div>
263
- </div>
264
-
265
- <div>
266
- <div class="flex justify-between mb-2">
267
- <span>Illustration</span>
268
- <span>90%</span>
269
- </div>
270
- <div class="progress-bar">
271
- <div class="progress-fill" style="width: 90%;"></div>
272
  </div>
273
  </div>
274
 
275
- <div>
276
- <div class="flex justify-between mb-2">
277
- <span>Super Mario</span>
278
- <span>80%</span>
279
- </div>
280
- <div class="progress-bar">
281
- <div class="progress-fill" style="width: 80%;"></div>
 
 
 
 
 
 
 
 
 
 
 
 
282
  </div>
283
  </div>
284
  </div>
285
  </div>
286
  </section>
287
 
288
- <!-- Contact Section -->
289
- <section id="contact" class="py-20 bg-gray-900 text-white">
290
- <div class="container mx-auto px-6">
291
- <h2 class="text-6xl font-bold mb-6">Let's talk</h2>
292
- <p class="text-xl text-gray-300 mb-12 max-w-2xl">
293
- Let's unite to forge imaginative interactions that resonate, creating a permanent digital impression.
294
- </p>
295
-
296
- <div class="flex items-center mb-12">
297
- <span class="mr-4">Available for work:</span>
298
- <div class="checkbox checked"></div>
299
- <div class="checkbox"></div>
300
- <div class="checkbox checked"></div>
301
- <div class="checkbox"></div>
302
- <div class="checkbox checked"></div>
303
- </div>
304
 
305
  <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
306
- <div>
307
- <h3 class="text-2xl font-semibold mb-6">Get in touch</h3>
308
- <div class="space-y-4">
309
- <div class="flex items-center">
310
- <i class="fas fa-envelope mr-4 text-xl"></i>
311
- <span>hello@sean.design</span>
 
 
 
 
 
312
  </div>
313
- <div class="flex items-center">
314
- <i class="fas fa-phone mr-4 text-xl"></i>
315
- <span>+1 (555) 123-4567</span>
 
 
 
 
 
316
  </div>
317
- <div class="flex items-center">
318
- <i class="fas fa-map-marker-alt mr-4 text-xl"></i>
319
- <span>New York, NY</span>
 
 
 
 
 
320
  </div>
321
- </div>
322
-
323
- <div class="mt-8">
324
- <h4 class="text-xl font-semibold mb-4">Follow me</h4>
325
- <div class="flex space-x-4">
326
- <a href="#" class="text-2xl hover:text-blue-400"><i class="fab fa-dribbble"></i></a>
327
- <a href="#" class="text-2xl hover:text-blue-400"><i class="fab fa-behance"></i></a>
328
- <a href="#" class="text-2xl hover:text-blue-400"><i class="fab fa-linkedin"></i></a>
329
- <a href="#" class="text-2xl hover:text-blue-400"><i class="fab fa-instagram"></i></a>
330
  </div>
331
  </div>
332
  </div>
333
 
334
- <div>
335
- <form class="space-y-6">
 
 
 
 
 
 
 
 
 
 
336
  <div>
337
- <label for="name" class="block mb-2">Name</label>
338
- <input type="text" id="name" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
 
 
 
 
 
339
  </div>
340
  <div>
341
- <label for="email" class="block mb-2">Email</label>
342
- <input type="email" id="email" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
 
 
 
 
 
343
  </div>
344
  <div>
345
- <label for="message" class="block mb-2">Message</label>
346
- <textarea id="message" rows="4" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
 
 
 
 
 
347
  </div>
348
- <button type="submit" class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded font-medium transition-colors">
349
- Send Message
350
- </button>
351
- </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  </div>
353
  </div>
354
  </div>
355
  </section>
356
 
357
- <!-- Footer -->
358
- <footer class="bg-black text-white py-12">
359
- <div class="container mx-auto px-6">
360
- <div class="flex flex-col md:flex-row justify-between items-center">
361
- <div class="mb-6 md:mb-0">
362
- <div class="text-2xl font-bold mb-2">SEAN</div>
363
- <p class="text-gray-400">New York-based Web Designer</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  </div>
365
-
366
- <div class="flex space-x-6">
367
- <a href="#" class="hover:text-blue-400">Home</a>
368
- <a href="#" class="hover:text-blue-400">Portfolio</a>
369
- <a href="#" class="hover:text-blue-400">About</a>
370
- <a href="#" class="hover:text-blue-400">Contact</a>
 
 
 
 
 
 
 
371
  </div>
372
  </div>
373
 
374
- <div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
375
- <p class="text-gray-400 mb-4 md:mb-0">© 2024 Sean. All rights reserved.</p>
376
- <p class="text-gray-400">Made with <span class="text-red-500"></span> in New York</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  </div>
378
  </div>
379
- </footer>
380
 
381
  <script>
382
- // Animate progress bars on scroll
383
- document.addEventListener('DOMContentLoaded', function() {
384
- const progressBars = document.querySelectorAll('.progress-fill');
385
-
386
- const observer = new IntersectionObserver((entries) => {
387
- entries.forEach(entry => {
388
- if (entry.isIntersecting) {
389
- const width = entry.target.style.width;
390
- entry.target.style.width = '0';
391
- setTimeout(() => {
392
- entry.target.style.width = width;
393
- }, 100);
394
- }
395
- });
396
- }, { threshold: 0.5 });
 
 
 
 
 
397
 
398
- progressBars.forEach(bar => {
399
- observer.observe(bar);
 
 
 
 
 
400
  });
401
 
402
- // Smooth scrolling for navigation
403
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
404
- anchor.addEventListener('click', function(e) {
405
- e.preventDefault();
406
-
407
- const targetId = this.getAttribute('href');
408
- const targetElement = document.querySelector(targetId);
409
-
410
- if (targetElement) {
411
- window.scrollTo({
412
- top: targetElement.offsetTop - 100,
413
- behavior: 'smooth'
414
- });
415
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  });
417
  });
418
  });
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Sean | Web Designer</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
9
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
  <style>
 
 
11
  body {
12
  font-family: 'Inter', sans-serif;
13
+ scroll-behavior: smooth;
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
+ .nav-dot {
16
+ width: 8px;
17
  height: 8px;
18
+ background-color: #999;
19
+ border-radius: 50%;
20
+ transition: all 0.3s ease;
 
 
 
 
 
 
21
  }
22
+ .nav-dot.active {
23
+ background-color: #000;
24
+ transform: scale(1.2);
 
 
 
 
 
25
  }
26
+ .skill-bar {
27
+ height: 4px;
28
+ background-color: #f0f0f0;
29
+ border-radius: 2px;
30
+ overflow: hidden;
 
 
 
 
31
  }
32
+ .skill-progress {
33
+ height: 100%;
34
  background-color: #000;
35
+ transition: width 1s ease;
36
  }
37
+ .project-card:hover .project-overlay {
38
+ opacity: 1;
 
39
  }
40
+ .project-overlay {
41
+ opacity: 0;
42
+ transition: opacity 0.3s ease;
43
+ background: rgba(0, 0, 0, 0.7);
 
 
 
 
 
 
44
  }
45
+ .fade-in {
46
+ opacity: 0;
47
+ transform: translateY(20px);
48
+ transition: opacity 0.6s ease, transform 0.6s ease;
49
+ }
50
+ .fade-in.visible {
51
+ opacity: 1;
52
+ transform: translateY(0);
53
  }
54
  </style>
55
  </head>
56
+ <body class="bg-white text-gray-900">
57
+ <!-- Navigation Dots -->
58
+ <div class="fixed right-8 top-1/2 transform -translate-y-1/2 hidden md:block z-50">
59
+ <div class="flex flex-col space-y-4">
60
+ <a href="#home" class="nav-dot active" data-section="home"></a>
61
+ <a href="#services" class="nav-dot" data-section="services"></a>
62
+ <a href="#portfolio" class="nav-dot" data-section="portfolio"></a>
63
+ <a href="#about" class="nav-dot" data-section="about"></a>
64
+ <a href="#skills" class="nav-dot" data-section="skills"></a>
65
+ <a href="#contact" class="nav-dot" data-section="contact"></a>
66
  </div>
67
+ </div>
 
 
 
68
 
69
  <!-- Hero Section -->
70
+ <section id="home" class="min-h-screen flex items-center justify-center px-6 md:px-16 py-24 relative">
71
+ <div class="max-w-4xl mx-auto text-center fade-in">
72
+ <h1 class="text-4xl md:text-6xl font-bold mb-4">Hey I'm Sean.</h1>
73
+ <p class="text-lg md:text-xl text-gray-600 mb-8">New York based</p>
74
+ <div class="flex justify-center space-x-4 mb-12">
75
+ <span class="px-4 py-1 bg-gray-100 rounded-full">Web Designer</span>
76
+ <span class="px-4 py-1 bg-gray-100 rounded-full">Pixel Pusher</span>
 
 
 
 
 
 
 
77
  </div>
78
+ <p class="text-gray-700 max-w-2xl mx-auto mb-12">
79
+ I create digital solutions that blend aesthetics with functionality. With 8+ years of experience, I help brands and businesses establish their online presence through thoughtful design and product strategy.
80
+ </p>
81
+ <a href="#contact" class="inline-block px-8 py-3 bg-black text-white rounded-full hover:bg-gray-800 transition duration-300">
82
+ Let's work together
83
+ </a>
84
+ </div>
85
+ </section>
86
+
87
+ <!-- Services Section -->
88
+ <section id="services" class="min-h-screen py-24 px-6 md:px-16 bg-gray-50">
89
+ <div class="max-w-6xl mx-auto">
90
+ <h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">01 — Services</h2>
91
 
92
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
93
+ <div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
94
+ <h3 class="text-2xl font-bold mb-4">Web</h3>
95
+ <p class="text-gray-600 mb-6">
96
+ Development of stunning online web apps and creative presentations that engage users and drive conversions.
97
+ </p>
98
+ <div class="flex space-x-2">
99
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">UI/UX</span>
100
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Development</span>
101
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Animation</span>
102
+ </div>
103
  </div>
104
+
105
+ <div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
106
+ <h3 class="text-2xl font-bold mb-4">Graphic</h3>
107
+ <p class="text-gray-600 mb-6">
108
+ Visually compelling graphic design solutions tailored to your needs, from logos to complete brand systems.
109
+ </p>
110
+ <div class="flex space-x-2">
111
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Branding</span>
112
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Print</span>
113
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Packaging</span>
114
+ </div>
115
  </div>
116
+
117
+ <div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
118
+ <h3 class="text-2xl font-bold mb-4">Product</h3>
119
+ <p class="text-gray-600 mb-6">
120
+ Inventive product placement and incredible 24/7 assistance to ensure your digital products succeed in the market.
121
+ </p>
122
+ <div class="flex space-x-2">
123
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Strategy</span>
124
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Research</span>
125
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Testing</span>
126
+ </div>
127
  </div>
128
+
129
+ <div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
130
+ <h3 class="text-2xl font-bold mb-4">Brand</h3>
131
+ <p class="text-gray-600 mb-6">
132
+ Creating exquisite and aesthetically pleasing brand identities that communicate your values and vision.
133
+ </p>
134
+ <div class="flex space-x-2">
135
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Identity</span>
136
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Strategy</span>
137
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Guidelines</span>
138
+ </div>
139
  </div>
140
  </div>
141
  </div>
142
  </section>
143
 
144
  <!-- Portfolio Section -->
145
+ <section id="portfolio" class="min-h-screen py-24 px-6 md:px-16">
146
+ <div class="max-w-6xl mx-auto">
147
+ <h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">02 — Portfolio</h2>
148
 
149
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
150
  <!-- Project 1 -->
151
+ <div class="project-card relative rounded-lg overflow-hidden fade-in">
152
+ <img src="https://source.unsplash.com/random/600x400/?webdesign" alt="Project 1" class="w-full h-64 object-cover">
153
+ <div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
154
+ <div class="text-center">
155
+ <h3 class="text-xl font-bold mb-2">E-commerce Platform</h3>
156
+ <p class="text-sm">UI/UX Design, Frontend Development</p>
157
+ </div>
158
+ </div>
159
  </div>
160
 
161
  <!-- Project 2 -->
162
+ <div class="project-card relative rounded-lg overflow-hidden fade-in">
163
+ <img src="https://source.unsplash.com/random/600x400/?branding" alt="Project 2" class="w-full h-64 object-cover">
164
+ <div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
165
+ <div class="text-center">
166
+ <h3 class="text-xl font-bold mb-2">Brand Identity</h3>
167
+ <p class="text-sm">Logo Design, Brand Guidelines</p>
168
+ </div>
169
+ </div>
170
  </div>
171
 
172
  <!-- Project 3 -->
173
+ <div class="project-card relative rounded-lg overflow-hidden fade-in">
174
+ <img src="https://source.unsplash.com/random/600x400/?mobileapp" alt="Project 3" class="w-full h-64 object-cover">
175
+ <div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
176
+ <div class="text-center">
177
+ <h3 class="text-xl font-bold mb-2">Mobile Application</h3>
178
+ <p class="text-sm">UI Design, Prototyping</p>
179
+ </div>
180
+ </div>
181
  </div>
182
 
183
  <!-- Project 4 -->
184
+ <div class="project-card relative rounded-lg overflow-hidden fade-in">
185
+ <img src="https://source.unsplash.com/random/600x400/?dashboard" alt="Project 4" class="w-full h-64 object-cover">
186
+ <div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
187
+ <div class="text-center">
188
+ <h3 class="text-xl font-bold mb-2">Analytics Dashboard</h3>
189
+ <p class="text-sm">UI Design, Data Visualization</p>
190
+ </div>
191
+ </div>
192
  </div>
193
 
194
  <!-- Project 5 -->
195
+ <div class="project-card relative rounded-lg overflow-hidden fade-in">
196
+ <img src="https://source.unsplash.com/random/600x400/?packaging" alt="Project 5" class="w-full h-64 object-cover">
197
+ <div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
198
+ <div class="text-center">
199
+ <h3 class="text-xl font-bold mb-2">Product Packaging</h3>
200
+ <p class="text-sm">3D Rendering, Print Design</p>
201
+ </div>
202
+ </div>
203
  </div>
204
 
205
  <!-- Project 6 -->
206
+ <div class="project-card relative rounded-lg overflow-hidden fade-in">
207
+ <img src="https://source.unsplash.com/random/600x400/?illustration" alt="Project 6" class="w-full h-64 object-cover">
208
+ <div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
209
+ <div class="text-center">
210
+ <h3 class="text-xl font-bold mb-2">Illustration Series</h3>
211
+ <p class="text-sm">Digital Art, Character Design</p>
212
+ </div>
213
+ </div>
214
  </div>
215
  </div>
216
  </div>
217
  </section>
218
 
219
  <!-- About Section -->
220
+ <section id="about" class="min-h-screen py-24 px-6 md:px-16 bg-gray-50">
221
+ <div class="max-w-6xl mx-auto">
222
+ <h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">03 — About</h2>
223
 
224
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
225
+ <div class="fade-in">
226
+ <h3 class="text-2xl font-bold mb-6">My Approach</h3>
227
+ <p class="text-gray-600 mb-6">
228
+ I believe in design that solves problems. Every pixel, interaction, and experience is carefully crafted to serve a purpose and create meaningful connections between brands and their audiences.
229
+ </p>
230
+ <p class="text-gray-600 mb-6">
231
+ With a background in both design and development, I bring a unique perspective to projects, ensuring that beautiful designs are also technically feasible and optimized for performance.
232
+ </p>
233
+ <div class="grid grid-cols-2 gap-4">
234
+ <div class="bg-white p-4 rounded-lg shadow-sm">
235
+ <p class="text-3xl font-bold mb-2">150+</p>
236
+ <p class="text-gray-600">Projects Completed</p>
237
+ </div>
238
+ <div class="bg-white p-4 rounded-lg shadow-sm">
239
+ <p class="text-3xl font-bold mb-2">8+</p>
240
+ <p class="text-gray-600">Years Experience</p>
241
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  </div>
243
  </div>
244
 
245
+ <div class="fade-in">
246
+ <h3 class="text-2xl font-bold mb-6">Work History</h3>
247
+ <div class="space-y-6">
248
+ <div class="border-l-2 border-black pl-4 py-2">
249
+ <h4 class="font-bold">Lead Product Designer</h4>
250
+ <p class="text-gray-600">Digital Agency, New York • 2020-Present</p>
251
+ </div>
252
+ <div class="border-l-2 border-gray-200 pl-4 py-2">
253
+ <h4 class="font-bold">Senior UI Designer</h4>
254
+ <p class="text-gray-600">Tech Startup, San Francisco • 2018-2020</p>
255
+ </div>
256
+ <div class="border-l-2 border-gray-200 pl-4 py-2">
257
+ <h4 class="font-bold">Graphic Designer</h4>
258
+ <p class="text-gray-600">Design Studio, Chicago • 2016-2018</p>
259
+ </div>
260
+ <div class="border-l-2 border-gray-200 pl-4 py-2">
261
+ <h4 class="font-bold">Design Intern</h4>
262
+ <p class="text-gray-600">Marketing Agency, Boston • 2015-2016</p>
263
+ </div>
264
  </div>
265
  </div>
266
  </div>
267
  </div>
268
  </section>
269
 
270
+ <!-- Skills Section -->
271
+ <section id="skills" class="min-h-screen py-24 px-6 md:px-16">
272
+ <div class="max-w-6xl mx-auto">
273
+ <h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">04 — Skills</h2>
 
 
 
 
 
 
 
 
 
 
 
 
274
 
275
  <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
276
+ <div class="fade-in">
277
+ <h3 class="text-2xl font-bold mb-6">Design</h3>
278
+ <div class="space-y-6">
279
+ <div>
280
+ <div class="flex justify-between mb-2">
281
+ <span>UI/UX Design</span>
282
+ <span>95%</span>
283
+ </div>
284
+ <div class="skill-bar">
285
+ <div class="skill-progress" style="width: 95%"></div>
286
+ </div>
287
  </div>
288
+ <div>
289
+ <div class="flex justify-between mb-2">
290
+ <span>Brand Identity</span>
291
+ <span>90%</span>
292
+ </div>
293
+ <div class="skill-bar">
294
+ <div class="skill-progress" style="width: 90%"></div>
295
+ </div>
296
  </div>
297
+ <div>
298
+ <div class="flex justify-between mb-2">
299
+ <span>Typography</span>
300
+ <span>85%</span>
301
+ </div>
302
+ <div class="skill-bar">
303
+ <div class="skill-progress" style="width: 85%"></div>
304
+ </div>
305
  </div>
306
+ <div>
307
+ <div class="flex justify-between mb-2">
308
+ <span>Illustration</span>
309
+ <span>80%</span>
310
+ </div>
311
+ <div class="skill-bar">
312
+ <div class="skill-progress" style="width: 80%"></div>
313
+ </div>
 
314
  </div>
315
  </div>
316
  </div>
317
 
318
+ <div class="fade-in">
319
+ <h3 class="text-2xl font-bold mb-6">Development</h3>
320
+ <div class="space-y-6">
321
+ <div>
322
+ <div class="flex justify-between mb-2">
323
+ <span>HTML/CSS</span>
324
+ <span>90%</span>
325
+ </div>
326
+ <div class="skill-bar">
327
+ <div class="skill-progress" style="width: 90%"></div>
328
+ </div>
329
+ </div>
330
  <div>
331
+ <div class="flex justify-between mb-2">
332
+ <span>JavaScript</span>
333
+ <span>85%</span>
334
+ </div>
335
+ <div class="skill-bar">
336
+ <div class="skill-progress" style="width: 85%"></div>
337
+ </div>
338
  </div>
339
  <div>
340
+ <div class="flex justify-between mb-2">
341
+ <span>React</span>
342
+ <span>80%</span>
343
+ </div>
344
+ <div class="skill-bar">
345
+ <div class="skill-progress" style="width: 80%"></div>
346
+ </div>
347
  </div>
348
  <div>
349
+ <div class="flex justify-between mb-2">
350
+ <span>Node.js</span>
351
+ <span>75%</span>
352
+ </div>
353
+ <div class="skill-bar">
354
+ <div class="skill-progress" style="width: 75%"></div>
355
+ </div>
356
  </div>
357
+ </div>
358
+ </div>
359
+ </div>
360
+
361
+ <div class="mt-16 fade-in">
362
+ <h3 class="text-2xl font-bold mb-6 text-center">Tools I Use</h3>
363
+ <div class="flex flex-wrap justify-center gap-4">
364
+ <div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
365
+ <i class="fab fa-figma text-xl mr-2"></i>
366
+ <span>Figma</span>
367
+ </div>
368
+ <div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
369
+ <i class="fab fa-adobe text-xl mr-2"></i>
370
+ <span>Adobe Suite</span>
371
+ </div>
372
+ <div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
373
+ <i class="fab fa-sketch text-xl mr-2"></i>
374
+ <span>Sketch</span>
375
+ </div>
376
+ <div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
377
+ <i class="fab fa-react text-xl mr-2"></i>
378
+ <span>React</span>
379
+ </div>
380
+ <div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
381
+ <i class="fab fa-git-alt text-xl mr-2"></i>
382
+ <span>Git</span>
383
+ </div>
384
  </div>
385
  </div>
386
  </div>
387
  </section>
388
 
389
+ <!-- Contact Section -->
390
+ <section id="contact" class="min-h-screen py-24 px-6 md:px-16 bg-gray-50">
391
+ <div class="max-w-4xl mx-auto">
392
+ <h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">05 — Contact</h2>
393
+
394
+ <div class="text-center mb-16 fade-in">
395
+ <h3 class="text-2xl font-bold mb-4">Let's talk</h3>
396
+ <p class="text-gray-600 max-w-2xl mx-auto mb-8">
397
+ Interested in working together or have a project in mind? I'd love to hear from you. Get in touch and let's create something amazing.
398
+ </p>
399
+ <a href="mailto:hello@sean.design" class="inline-block px-8 py-3 bg-black text-white rounded-full hover:bg-gray-800 transition duration-300">
400
+ hello@sean.design
401
+ </a>
402
+ </div>
403
+
404
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 fade-in">
405
+ <div class="text-center">
406
+ <div class="bg-white p-6 rounded-lg shadow-sm h-full">
407
+ <i class="fas fa-map-marker-alt text-3xl mb-4"></i>
408
+ <h4 class="font-bold mb-2">Location</h4>
409
+ <p class="text-gray-600">New York, NY</p>
410
+ </div>
411
  </div>
412
+ <div class="text-center">
413
+ <div class="bg-white p-6 rounded-lg shadow-sm h-full">
414
+ <i class="fas fa-phone-alt text-3xl mb-4"></i>
415
+ <h4 class="font-bold mb-2">Phone</h4>
416
+ <p class="text-gray-600">+1 (555) 123-4567</p>
417
+ </div>
418
+ </div>
419
+ <div class="text-center">
420
+ <div class="bg-white p-6 rounded-lg shadow-sm h-full">
421
+ <i class="fas fa-envelope text-3xl mb-4"></i>
422
+ <h4 class="font-bold mb-2">Email</h4>
423
+ <p class="text-gray-600">hello@sean.design</p>
424
+ </div>
425
  </div>
426
  </div>
427
 
428
+ <div class="mt-16 flex justify-center space-x-6 fade-in">
429
+ <a href="#" class="text-gray-700 hover:text-black transition duration-300">
430
+ <i class="fab fa-dribbble text-2xl"></i>
431
+ </a>
432
+ <a href="#" class="text-gray-700 hover:text-black transition duration-300">
433
+ <i class="fab fa-behance text-2xl"></i>
434
+ </a>
435
+ <a href="#" class="text-gray-700 hover:text-black transition duration-300">
436
+ <i class="fab fa-linkedin-in text-2xl"></i>
437
+ </a>
438
+ <a href="#" class="text-gray-700 hover:text-black transition duration-300">
439
+ <i class="fab fa-instagram text-2xl"></i>
440
+ </a>
441
+ <a href="#" class="text-gray-700 hover:text-black transition duration-300">
442
+ <i class="fab fa-twitter text-2xl"></i>
443
+ </a>
444
+ </div>
445
+
446
+ <div class="mt-16 text-center text-gray-500 text-sm fade-in">
447
+ <p>© 2023 Sean. All rights reserved.</p>
448
  </div>
449
  </div>
450
+ </section>
451
 
452
  <script>
453
+ // Scroll animation
454
+ const fadeElements = document.querySelectorAll('.fade-in');
455
+
456
+ const fadeInOnScroll = () => {
457
+ fadeElements.forEach(element => {
458
+ const elementTop = element.getBoundingClientRect().top;
459
+ const windowHeight = window.innerHeight;
460
+
461
+ if (elementTop < windowHeight - 100) {
462
+ element.classList.add('visible');
463
+ }
464
+ });
465
+ };
466
+
467
+ // Navigation dots
468
+ const sections = document.querySelectorAll('section');
469
+ const navDots = document.querySelectorAll('.nav-dot');
470
+
471
+ const highlightNavDot = () => {
472
+ let currentSection = '';
473
 
474
+ sections.forEach(section => {
475
+ const sectionTop = section.offsetTop;
476
+ const sectionHeight = section.clientHeight;
477
+
478
+ if (window.scrollY >= sectionTop - 300) {
479
+ currentSection = section.getAttribute('id');
480
+ }
481
  });
482
 
483
+ navDots.forEach(dot => {
484
+ dot.classList.remove('active');
485
+ if (dot.getAttribute('data-section') === currentSection) {
486
+ dot.classList.add('active');
487
+ }
488
+ });
489
+ };
490
+
491
+ // Initialize
492
+ window.addEventListener('load', () => {
493
+ fadeInOnScroll();
494
+ highlightNavDot();
495
+ });
496
+
497
+ window.addEventListener('scroll', () => {
498
+ fadeInOnScroll();
499
+ highlightNavDot();
500
+ });
501
+
502
+ // Smooth scroll for navigation dots
503
+ navDots.forEach(dot => {
504
+ dot.addEventListener('click', (e) => {
505
+ e.preventDefault();
506
+ const targetId = dot.getAttribute('data-section');
507
+ const targetSection = document.getElementById(targetId);
508
+
509
+ window.scrollTo({
510
+ top: targetSection.offsetTop,
511
+ behavior: 'smooth'
512
  });
513
  });
514
  });
prompts.txt CHANGED
@@ -1,2 +1,4 @@
1
  **Prompt for Website Screenshot Design:** **Objective:** Create a modern, user-friendly website design for a financial management platform based on the provided content. **Key Sections & Elements to Include:** 1. **Hero Section:** - **Headline:** "Simplify Your Financial Life, Today!" in bold, large typography. - **Subtext:** "Manage your finances effortlessly with our intuitive platform. Track your balance, monitor income, and control your expenses all in one place." - **Primary CTA:** "Get for Free" button in a contrasting vibrant color (e.g., teal or orange). 2. **Today’s Overview Dashboard:** - **Total Balance:** Display "$13,289.00" prominently with a subtext showing the last update date. - **Bankboard Navigation:** Three tabs/buttons labeled "Transactions," "Credit," and "Settings." - **Income vs. Outcome:** Two side-by-side cards showing "$2,350.00 (2.60%)" for income and "$5,620.00 (1.50%)" for expenses. - **Quick Actions:** "Settle bills ($800.00)" and "Taxing bill ($18.00)" as smaller clickable modules. 3. **CloudWatch Feature Section:** - Highlight three features with icons: "Lightbox," "Alt+Shift," "Interlock" (abstract names—use minimalist tech-inspired icons). 4. **Monthly Expenses Visualization:** - A dynamic chart/graph section titled "Get a Clear View of Your Monthly Expenses" with filters (e.g., by category, timeline). - Include a brief description: "Easily track and categorize your spending to stay on top of your finances." 5. **Value Proposition Section:** - **Headline:** "Take Control of Your Finances and Save More." - Bullet points: - "Easily track your income and spending." - "Set and achieve savings goals." - Support with illustrations of savings goals or budget trackers. 6. **Group Expense Feature:** - **Headline:** "Split Expenses with Ease." - Subtext: "Easily divide shared bills among friends and family. Keep everyone accountable." - **Secondary CTA:** "Download the App" button + "No credit card required" disclaimer. 7. **Testimonials:** - Display 3-4 user quotes in a carousel or grid. Include profile images, names, and professions (e.g., "John Doe, Financial Analyst"). Highlight quotes like "Intuitive and makes tracking expenses easier." 8. **Pricing Plans:** - Two tiered cards: - **Personal Plan:** "$2.99/mo" with features like "Unlimited transactions," "Customizable budgets," and "Basic analytics." - **Business Plan:** "$8.99/mo" with features like "Advanced reporting," "Team collaboration," and "Priority support." - "Try For Free" buttons for each plan. 9. **Footer:** - Newsletter signup: "Your email address" field + "Subscribe" button. - Links: "Home," "FAQ," "Blog." - Tagline: "Made in France" and "vibrant." **Visual Style:** - **Color Palette:** Professional blues and grays with vibrant accents (e.g., teal/orange for CTAs). - **Typography:** Clean sans-serif fonts (e.g., Inter or Roboto) with bold headers. - **Imagery:** Use abstract financial-themed illustrations (e.g., charts, wallets) and real-life user avatars for testimonials. - **Layout:** Responsive grid with ample white space, card-based modules, and intuitive navigation. **Additional Notes:** - Ensure mobile-friendly design with collapsible menus. - Use subtle animations for hover effects on buttons and cards. - Include icons for features (e.g., pie charts, split bills, savings jars). --- This prompt ensures the designer captures both functionality and aesthetics while aligning with the PDF’s content structure.
2
- **Prompt for Website Clone Design:** **Objective:** Recreate a modern, portfolio website for "Sean," a New York-based web designer, based on the provided PDF content. --- ### **Key Sections & Elements to Include:** 1. **Hero Section:** - **Headline:** "Hey — I'm Sean. A New York-based Web Designer." in bold, minimalist typography. - **Tagline:** "Experienced designer known for creating digital solutions with a solid product strategy." - **Availability Indicator:** Display 4 checkboxes (☐ ☒ ☐ ☐) with the label "Available for work." - **Services Grid:** Four tiles labeled "Web," "Graphic," "Product," and "Brand." - **Graphic Accent:** Repeat the phrase "GRAPHIC WEB PRODUC" in a subtle, stylized typographic pattern as a background/texture element. 2. **Portfolio Section:** - **Title:** "PORTFOLIO" in a large header. - **Layout:** Grid of project thumbnails (use placeholder images with hover effects for titles/descriptions). 3. **About Section:** - **Headline:** "ABOUT" - **Description:** "I'm a creative development individual eager to provide [incomplete—add placeholder text or CTA to encourage contact]." - **Work Experience Table:** - Columns: COMPANY | POSITION | YEAR - Rows: - Massa Fames / New York | Junior Developer | 2018 - Lobrissa / Chicago | Junior Developer | 2019 - Fauzbusse / Seattle | C++ Developer | 2021 - Yivera Arcu / Seattle | Senior Developer | 2024 4. **Skills Section:** - **Title:** "SKILLS" - **Progress Bars:** Label each skill with percentage: - Graphic Design (90%) - HTML (70%) - Illustration (90%) - Super Mario (80%) *(retain as a quirky element)* 5. **Contact Section:** - **Headline:** "Let's talk" with a subtext: "Let's unite to forge imaginative interactions that resonate, creating a permanent digital impression." - **Availability Checkboxes:** 5 checkboxes (☐ ☒ ☐ ☐ ☒) under "Available for work." - **Contact Details:** Include placeholder fields/links for email, social media, or a contact form. --- ### **Visual Style:** - **Color Palette:** Monochrome (blacks, whites, grays) with a single vibrant accent color (e.g., neon green or electric blue). - **Typography:** Modern sans-serif (e.g., Helvetica Neue) with bold headers and clean body text. - **Layout:** Asymmetrical grid for portfolio, minimalist cards for work experience, and clean dividers between sections. - **Interactive Elements:** Hover effects on service tiles, animated progress bars for skills, and subtle parallax scrolling. --- ### **Additional Notes:** - Retain the PDF’s quirky elements (e.g., "Super Mario" skill, repeated "GRAPHIC WEB PRODUC" text) for authenticity. - Ensure mobile responsiveness with collapsible menus and stacked grids. - Use geometric shapes/abstract lines for visual interest in the background. - Add subtle animations (e.g., fade-ins on scroll for sections). --- This prompt ensures the cloned design captures Sean’s unique brand while maintaining a professional yet playful aesthetic.
 
 
 
1
  **Prompt for Website Screenshot Design:** **Objective:** Create a modern, user-friendly website design for a financial management platform based on the provided content. **Key Sections & Elements to Include:** 1. **Hero Section:** - **Headline:** "Simplify Your Financial Life, Today!" in bold, large typography. - **Subtext:** "Manage your finances effortlessly with our intuitive platform. Track your balance, monitor income, and control your expenses all in one place." - **Primary CTA:** "Get for Free" button in a contrasting vibrant color (e.g., teal or orange). 2. **Today’s Overview Dashboard:** - **Total Balance:** Display "$13,289.00" prominently with a subtext showing the last update date. - **Bankboard Navigation:** Three tabs/buttons labeled "Transactions," "Credit," and "Settings." - **Income vs. Outcome:** Two side-by-side cards showing "$2,350.00 (2.60%)" for income and "$5,620.00 (1.50%)" for expenses. - **Quick Actions:** "Settle bills ($800.00)" and "Taxing bill ($18.00)" as smaller clickable modules. 3. **CloudWatch Feature Section:** - Highlight three features with icons: "Lightbox," "Alt+Shift," "Interlock" (abstract names—use minimalist tech-inspired icons). 4. **Monthly Expenses Visualization:** - A dynamic chart/graph section titled "Get a Clear View of Your Monthly Expenses" with filters (e.g., by category, timeline). - Include a brief description: "Easily track and categorize your spending to stay on top of your finances." 5. **Value Proposition Section:** - **Headline:** "Take Control of Your Finances and Save More." - Bullet points: - "Easily track your income and spending." - "Set and achieve savings goals." - Support with illustrations of savings goals or budget trackers. 6. **Group Expense Feature:** - **Headline:** "Split Expenses with Ease." - Subtext: "Easily divide shared bills among friends and family. Keep everyone accountable." - **Secondary CTA:** "Download the App" button + "No credit card required" disclaimer. 7. **Testimonials:** - Display 3-4 user quotes in a carousel or grid. Include profile images, names, and professions (e.g., "John Doe, Financial Analyst"). Highlight quotes like "Intuitive and makes tracking expenses easier." 8. **Pricing Plans:** - Two tiered cards: - **Personal Plan:** "$2.99/mo" with features like "Unlimited transactions," "Customizable budgets," and "Basic analytics." - **Business Plan:** "$8.99/mo" with features like "Advanced reporting," "Team collaboration," and "Priority support." - "Try For Free" buttons for each plan. 9. **Footer:** - Newsletter signup: "Your email address" field + "Subscribe" button. - Links: "Home," "FAQ," "Blog." - Tagline: "Made in France" and "vibrant." **Visual Style:** - **Color Palette:** Professional blues and grays with vibrant accents (e.g., teal/orange for CTAs). - **Typography:** Clean sans-serif fonts (e.g., Inter or Roboto) with bold headers. - **Imagery:** Use abstract financial-themed illustrations (e.g., charts, wallets) and real-life user avatars for testimonials. - **Layout:** Responsive grid with ample white space, card-based modules, and intuitive navigation. **Additional Notes:** - Ensure mobile-friendly design with collapsible menus. - Use subtle animations for hover effects on buttons and cards. - Include icons for features (e.g., pie charts, split bills, savings jars). --- This prompt ensures the designer captures both functionality and aesthetics while aligning with the PDF’s content structure.
2
+ **Prompt for Website Clone Design:** **Objective:** Recreate a modern, portfolio website for "Sean," a New York-based web designer, based on the provided PDF content. --- ### **Key Sections & Elements to Include:** 1. **Hero Section:** - **Headline:** "Hey — I'm Sean. A New York-based Web Designer." in bold, minimalist typography. - **Tagline:** "Experienced designer known for creating digital solutions with a solid product strategy." - **Availability Indicator:** Display 4 checkboxes (☐ ☒ ☐ ☐) with the label "Available for work." - **Services Grid:** Four tiles labeled "Web," "Graphic," "Product," and "Brand." - **Graphic Accent:** Repeat the phrase "GRAPHIC WEB PRODUC" in a subtle, stylized typographic pattern as a background/texture element. 2. **Portfolio Section:** - **Title:** "PORTFOLIO" in a large header. - **Layout:** Grid of project thumbnails (use placeholder images with hover effects for titles/descriptions). 3. **About Section:** - **Headline:** "ABOUT" - **Description:** "I'm a creative development individual eager to provide [incomplete—add placeholder text or CTA to encourage contact]." - **Work Experience Table:** - Columns: COMPANY | POSITION | YEAR - Rows: - Massa Fames / New York | Junior Developer | 2018 - Lobrissa / Chicago | Junior Developer | 2019 - Fauzbusse / Seattle | C++ Developer | 2021 - Yivera Arcu / Seattle | Senior Developer | 2024 4. **Skills Section:** - **Title:** "SKILLS" - **Progress Bars:** Label each skill with percentage: - Graphic Design (90%) - HTML (70%) - Illustration (90%) - Super Mario (80%) *(retain as a quirky element)* 5. **Contact Section:** - **Headline:** "Let's talk" with a subtext: "Let's unite to forge imaginative interactions that resonate, creating a permanent digital impression." - **Availability Checkboxes:** 5 checkboxes (☐ ☒ ☐ ☐ ☒) under "Available for work." - **Contact Details:** Include placeholder fields/links for email, social media, or a contact form. --- ### **Visual Style:** - **Color Palette:** Monochrome (blacks, whites, grays) with a single vibrant accent color (e.g., neon green or electric blue). - **Typography:** Modern sans-serif (e.g., Helvetica Neue) with bold headers and clean body text. - **Layout:** Asymmetrical grid for portfolio, minimalist cards for work experience, and clean dividers between sections. - **Interactive Elements:** Hover effects on service tiles, animated progress bars for skills, and subtle parallax scrolling. --- ### **Additional Notes:** - Retain the PDF’s quirky elements (e.g., "Super Mario" skill, repeated "GRAPHIC WEB PRODUC" text) for authenticity. - Ensure mobile responsiveness with collapsible menus and stacked grids. - Use geometric shapes/abstract lines for visual interest in the background. - Add subtle animations (e.g., fade-ins on scroll for sections). --- This prompt ensures the cloned design captures Sean’s unique brand while maintaining a professional yet playful aesthetic.
3
+ Here's a detailed prompt to recreate the website shown in the PDF: --- **Project: Financial Management App Landing Page Clone** **Objective:** Create a responsive landing page for a financial management app with identical layout, design elements, and functionality to the provided sample. **Key Components:** 1. **Header Section** - Top navigation bar with "Vibrant" logo (sans-serif font) - Subtitle: "Simplify Your Financial Life, Today!" - Primary CTA button: "Get for Free" (highlighted button) 2. **Hero Section** - Main headline: "Manage your finances effortlessly with our intuitive platform" - Supporting bullet points: - "Track your balance" - "Monitor income" - "Control your expenses" - "All in one place" - Secondary CTA: "Get for Free+" with pricing indicator "$2,380.00" 3. **Dashboard Preview** - Financial metrics display: - "Today's overview" - 3-4 metric cards with dollar amounts ($13,289.00, $2,350.00, $5,620.00) - Feature highlights: - "Clear View of Your Monthly Expenses" - "Take Control of Your Finances and Save More" - "Split Bills with Ease" - "Keep everything in check" 4. **Testimonials Section** - "What people say" header - 8 testimonial cards with: - User names (John Doe, Derek Smith, etc.) - Short quotes about app benefits - Star ratings and roles (student, freelancer, business owner) 5. **Pricing Section** - "Ready to get started? Choose a plan fits to your needs" - Two pricing tiers: - Personal Plan: $2.99/month - Business Plan: $8.99/month - Each plan includes: - Try for free button - Features list (unlimited transactions, customizable budget categories) 6. **Visual Elements** - App interface mockups in background - Financial chart graphics - Progress bars and performance metrics **Design Specifications:** - Color scheme: Blue gradient for headers, white background, green accent for CTA buttons - Typography: Sans-serif fonts (similar to Roboto or Open Sans) - Layout: Grid-based design with balanced spacing between sections - Responsive design for mobile devices - Micro-interactions for buttons and hover states **Technical Requirements:** - Frontend: HTML5, CSS3 (with Flexbox/Grid), JavaScript - Font imports from Google Fonts - Image placeholders with appropriate aspect ratios - Semantic HTML structure for SEO - CSS variables for consistent theming **Deliverables:** - Complete HTML/CSS/JS files - Image assets (use placeholder services or suggest custom illustrations) - Mobile-responsive design - Interactive elements functioning as shown **Additional Notes:** - Maintain the exact hierarchy and placement of all elements - Preserve the financial terminology and metrics shown - Replicate the visual flow and hierarchy of information - Ensure all interactive elements (buttons, links) have proper styling --- This prompt provides developers with exact instructions to recreate the visual structure, content hierarchy, and functionality while maintaining the original design language.
4
+ The website is a portfolio template for a web designer named Sean. Here’s a prompt to create a similar template: --- **Prompt:** Create a modern, minimalist portfolio website template for a web designer similar to the "Sampo - Portfolio Framer Template" ([link](https://sampo.framer.website/)). The layout should include: 1 **.Hero Section**: - A welcome header ("Hey — I'm [Name].") - Location-based title (e.g., "New York based") - Short taglines (e.g., "Web Designer," "Pixel Pusher"). - Brief bio highlighting experience in digital solutions and product strategy. 2. **Services Section (01)**: - Four service categories: - **Web**: "Development of stunning online web apps and creative presentations." - **Graphic**: "Visually compelling graphic design solutions tailored to your needs." - **Product**: "Inventive product placement and incredible 24/7 assistance." - **Brand**: "Creating exquisite and aesthetically pleasing brand identities." 3. **Portfolio Section (02)**: - A gallery of project thumbnails with hover effects. 4. **About Section (03)**: - A summary of the designer’s creative approach and measurable results. - Work history timeline with company names, locations, roles, and years. 5. **Skills Section (04)**: - A visual representation of technical or design skills (e.g., icons, progress bars). 6. **Contact Section (05)**: - A call-to-action ("Let's talk") with contact options. - Footer with social media links and/or email. **Design Style**: - Clean typography with bold headings and minimal paragraphs. - Subtle animations for interactions (e.g., scroll-triggered fades). - Use of negative space and a muted color palette. - Responsive layout for desktop and mobile. **Additional Features**: - Navigation dots or progress indicators for easy scrolling. - Embedded social media or contact icon placeholders. --- This prompt should help you recreate a similar template while minimizing text and emphasizing visual hierarchy.