TomHoax commited on
Commit
fb2a78a
·
verified ·
1 Parent(s): a7cb365

make a project porfolio caousel inth ePORTFOLIO section - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +439 -18
  3. prompts.txt +7 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 😻
4
- colorFrom: pink
5
- colorTo: indigo
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: test
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: green
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,440 @@
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>Index</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
13
+ <script src="https://unpkg.com/feather-icons"></script>
14
+ </head>
15
+ <body>
16
+ <header class="bg-blue-600 text-white p-4 shadow-lg">
17
+ <div class="container mx-auto flex justify-between items-center">
18
+ <h1 class="text-2xl font-bold">HEELO WORLD</h1>
19
+ <nav>
20
+ <ul class="flex space-x-6">
21
+ <li><a href="#home" class="hover:text-blue-200">Home</a></li>
22
+ <li><a href="#about" class="hover:text-blue-200">About</a></li>
23
+ <li><a href="#services" class="hover:text-blue-200">Services</a></li>
24
+ <li><a href="#portfolio" class="hover:text-blue-200">Portfolio</a></li>
25
+ <li><a href="#contact" class="hover:text-blue-200">Contact</a></li>
26
+ </ul>
27
+ </nav>
28
+ </div>
29
+ </header>
30
+
31
+ <main>
32
+ <section id="home" class="py-20 bg-gray-100">
33
+ <div class="container mx-auto px-4">
34
+ <h2 class="text-3xl font-bold mb-6">Welcome Section</h2>
35
+ <div class="carousel relative w-full h-96 overflow-hidden rounded-lg shadow-xl">
36
+ <div class="carousel-inner flex transition-transform duration-500 ease-in-out">
37
+ <div class="carousel-item w-full flex-shrink-0">
38
+ <img src="http://static.photos/nature/1024x576/1" alt="Nature 1" class="w-full h-full object-cover">
39
+ </div>
40
+ <div class="carousel-item w-full flex-shrink-0">
41
+ <img src="http://static.photos/cityscape/1024x576/2" alt="Cityscape" class="w-full h-full object-cover">
42
+ </div>
43
+ <div class="carousel-item w-full flex-shrink-0">
44
+ <img src="http://static.photos/technology/1024x576/3" alt="Technology" class="w-full h-full object-cover">
45
+ </div>
46
+ </div>
47
+ <button class="carousel-prev absolute left-4 top-1/2 -translate-y-1/2 bg-white/50 hover:bg-white/75 rounded-full p-2 shadow-md">
48
+ <i data-feather="chevron-left"></i>
49
+ </button>
50
+ <button class="carousel-next absolute right-4 top-1/2 -translate-y-1/2 bg-white/50 hover:bg-white/75 rounded-full p-2 shadow-md">
51
+ <i data-feather="chevron-right"></i>
52
+ </button>
53
+ <div class="carousel-indicators absolute bottom-4 left-1/2 -translate-x-1/2 flex space-x-2">
54
+ <button class="w-3 h-3 rounded-full bg-white/50 hover:bg-white"></button>
55
+ <button class="w-3 h-3 rounded-full bg-white/50 hover:bg-white"></button>
56
+ <button class="w-3 h-3 rounded-full bg-white/50 hover:bg-white"></button>
57
+ </div>
58
+ </div>
59
+ <script>
60
+ document.addEventListener('DOMContentLoaded', function() {
61
+ const carousel = document.querySelector('.carousel');
62
+ const inner = carousel.querySelector('.carousel-inner');
63
+ const items = carousel.querySelectorAll('.carousel-item');
64
+ const prevBtn = carousel.querySelector('.carousel-prev');
65
+ const nextBtn = carousel.querySelector('.carousel-next');
66
+ const indicators = carousel.querySelectorAll('.carousel-indicators button');
67
+
68
+ let currentIndex = 0;
69
+ const itemCount = items.length;
70
+
71
+ function updateCarousel() {
72
+ inner.style.transform = `translateX(-${currentIndex * 100}%)`;
73
+ indicators.forEach((indicator, index) => {
74
+ indicator.classList.toggle('bg-white', index === currentIndex);
75
+ indicator.classList.toggle('bg-white/50', index !== currentIndex);
76
+ });
77
+ }
78
+
79
+ nextBtn.addEventListener('click', () => {
80
+ currentIndex = (currentIndex + 1) % itemCount;
81
+ updateCarousel();
82
+ });
83
+
84
+ prevBtn.addEventListener('click', () => {
85
+ currentIndex = (currentIndex - 1 + itemCount) % itemCount;
86
+ updateCarousel();
87
+ });
88
+
89
+ indicators.forEach((indicator, index) => {
90
+ indicator.addEventListener('click', () => {
91
+ currentIndex = index;
92
+ updateCarousel();
93
+ });
94
+ });
95
+
96
+ // Auto-rotate every 5 seconds
97
+ setInterval(() => {
98
+ currentIndex = (currentIndex + 1) % itemCount;
99
+ updateCarousel();
100
+ }, 5000);
101
+ });
102
+ </script>
103
+ </div>
104
+ </section>
105
+
106
+ <section id="about" class="py-20 bg-white">
107
+ <div class="container mx-auto px-4">
108
+ <h2 class="text-3xl font-bold mb-6">About Us</h2>
109
+ <div class="resume-container max-w-4xl mx-auto">
110
+ <div class="resume-header bg-blue-600 text-white p-6 rounded-t-lg shadow-md">
111
+ <h3 class="text-2xl font-bold">John Doe</h3>
112
+ <p class="text-blue-100">Senior Web Developer</p>
113
+ </div>
114
+
115
+ <div class="resume-body bg-gray-50 p-6 rounded-b-lg shadow-md">
116
+ <div class="resume-section mb-8">
117
+ <h4 class="text-xl font-semibold mb-4 border-b pb-2">Professional Summary</h4>
118
+ <p class="text-gray-700">Experienced web developer with 5+ years of expertise in front-end development, UI/UX design, and responsive web applications. Passionate about creating efficient, scalable, and user-friendly digital experiences.</p>
119
+ </div>
120
+
121
+ <div class="resume-section mb-8">
122
+ <h4 class="text-xl font-semibold mb-4 border-b pb-2">Skills</h4>
123
+ <div class="grid grid-cols-2 md:grid-cols-3 gap-4">
124
+ <div class="skill-item bg-white p-3 rounded shadow-sm">
125
+ <span class="font-medium">HTML/CSS</span>
126
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
127
+ <div class="bg-blue-600 h-2.5 rounded-full" style="width: 95%"></div>
128
+ </div>
129
+ </div>
130
+ <div class="skill-item bg-white p-3 rounded shadow-sm">
131
+ <span class="font-medium">JavaScript</span>
132
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
133
+ <div class="bg-blue-600 h-2.5 rounded-full" style="width: 90%"></div>
134
+ </div>
135
+ </div>
136
+ <div class="skill-item bg-white p-3 rounded shadow-sm">
137
+ <span class="font-medium">React</span>
138
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
139
+ <div class="bg-blue-600 h-2.5 rounded-full" style="width: 85%"></div>
140
+ </div>
141
+ </div>
142
+ <div class="skill-item bg-white p-3 rounded shadow-sm">
143
+ <span class="font-medium">UI/UX Design</span>
144
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
145
+ <div class="bg-blue-600 h-2.5 rounded-full" style="width: 88%"></div>
146
+ </div>
147
+ </div>
148
+ <div class="skill-item bg-white p-3 rounded shadow-sm">
149
+ <span class="font-medium">Node.js</span>
150
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
151
+ <div class="bg-blue-600 h-2.5 rounded-full" style="width: 75%"></div>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <div class="resume-section">
158
+ <h4 class="text-xl font-semibold mb-4 border-b pb-2">Experience</h4>
159
+ <div class="experience-item mb-6">
160
+ <div class="flex justify-between items-start">
161
+ <div>
162
+ <h5 class="font-bold text-lg">Senior Web Developer</h5>
163
+ <p class="text-blue-600">Tech Solutions Inc.</p>
164
+ </div>
165
+ <span class="bg-blue-100 text-blue-800 text-sm px-3 py-1 rounded-full">2020 - Present</span>
166
+ </div>
167
+ <ul class="mt-3 list-disc pl-5 text-gray-700">
168
+ <li>Lead front-end development for enterprise applications</li>
169
+ <li>Implemented responsive design frameworks</li>
170
+ <li>Mentored junior developers</li>
171
+ </ul>
172
+ </div>
173
+ <div class="experience-item">
174
+ <div class="flex justify-between items-start">
175
+ <div>
176
+ <h5 class="font-bold text-lg">Web Developer</h5>
177
+ <p class="text-blue-600">Digital Creations</p>
178
+ </div>
179
+ <span class="bg-blue-100 text-blue-800 text-sm px-3 py-1 rounded-full">2017 - 2020</span>
180
+ </div>
181
+ <ul class="mt-3 list-disc pl-5 text-gray-700">
182
+ <li>Developed custom WordPress themes</li>
183
+ <li>Optimized website performance</li>
184
+ <li>Collaborated with design team</li>
185
+ </ul>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </section>
192
+
193
+ <section id="services" class="py-20 bg-gray-100">
194
+ <div class="container mx-auto px-4">
195
+ <h2 class="text-3xl font-bold mb-6">Our Services</h2>
196
+ <p class="text-lg mb-12">Discover what we can do for you.</p>
197
+
198
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
199
+ <div class="service-card group relative overflow-hidden rounded-lg shadow-lg transition-all duration-300 hover:shadow-xl">
200
+ <img src="http://static.photos/technology/640x360/1" alt="Web Development" class="w-full h-64 object-cover transition-transform duration-300 group-hover:scale-110">
201
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6">
202
+ <h3 class="text-white text-xl font-bold">Web Development</h3>
203
+ </div>
204
+ </div>
205
+
206
+ <div class="service-card group relative overflow-hidden rounded-lg shadow-lg transition-all duration-300 hover:shadow-xl">
207
+ <img src="http://static.photos/design/640x360/2" alt="UI/UX Design" class="w-full h-64 object-cover transition-transform duration-300 group-hover:scale-110">
208
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6">
209
+ <h3 class="text-white text-xl font-bold">UI/UX Design</h3>
210
+ </div>
211
+ </div>
212
+
213
+ <div class="service-card group relative overflow-hidden rounded-lg shadow-lg transition-all duration-300 hover:shadow-xl">
214
+ <img src="http://static.photos/mobile/640x360/3" alt="Mobile Apps" class="w-full h-64 object-cover transition-transform duration-300 group-hover:scale-110">
215
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6">
216
+ <h3 class="text-white text-xl font-bold">Mobile Apps</h3>
217
+ </div>
218
+ </div>
219
+
220
+ <div class="service-card group relative overflow-hidden rounded-lg shadow-lg transition-all duration-300 hover:shadow-xl">
221
+ <img src="http://static.photos/seo/640x360/4" alt="SEO Optimization" class="w-full h-64 object-cover transition-transform duration-300 group-hover:scale-110">
222
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6">
223
+ <h3 class="text-white text-xl font-bold">SEO Optimization</h3>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="service-card group relative overflow-hidden rounded-lg shadow-lg transition-all duration-300 hover:shadow-xl">
228
+ <img src="http://static.photos/cloud/640x360/5" alt="Cloud Solutions" class="w-full h-64 object-cover transition-transform duration-300 group-hover:scale-110">
229
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6">
230
+ <h3 class="text-white text-xl font-bold">Cloud Solutions</h3>
231
+ </div>
232
+ </div>
233
+
234
+ <div class="service-card group relative overflow-hidden rounded-lg shadow-lg transition-all duration-300 hover:shadow-xl">
235
+ <img src="http://static.photos/support/640x360/6" alt="24/7 Support" class="w-full h-64 object-cover transition-transform duration-300 group-hover:scale-110">
236
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6">
237
+ <h3 class="text-white text-xl font-bold">24/7 Support</h3>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </section>
243
+
244
+ <section id="portfolio" class="py-20 bg-white">
245
+ <div class="container mx-auto px-4">
246
+ <h2 class="text-3xl font-bold mb-6">Portfolio</h2>
247
+ <p class="text-lg mb-12">View our previous work and projects.</p>
248
+
249
+ <div class="portfolio-carousel relative w-full overflow-hidden rounded-lg shadow-xl">
250
+ <div class="portfolio-inner flex transition-transform duration-500 ease-in-out">
251
+ <div class="portfolio-item w-full flex-shrink-0 p-4">
252
+ <div class="bg-gray-100 rounded-lg p-6 h-full">
253
+ <img src="http://static.photos/technology/1024x576/10" alt="Project 1" class="w-full h-64 object-cover rounded-lg mb-4">
254
+ <h3 class="text-xl font-bold mb-2">E-Commerce Platform</h3>
255
+ <p class="text-gray-700 mb-4">A full-featured online store with payment integration and inventory management.</p>
256
+ <div class="flex flex-wrap gap-2">
257
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">React</span>
258
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Node.js</span>
259
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">MongoDB</span>
260
+ </div>
261
+ </div>
262
+ </div>
263
+ <div class="portfolio-item w-full flex-shrink-0 p-4">
264
+ <div class="bg-gray-100 rounded-lg p-6 h-full">
265
+ <img src="http://static.photos/mobile/1024x576/11" alt="Project 2" class="w-full h-64 object-cover rounded-lg mb-4">
266
+ <h3 class="text-xl font-bold mb-2">Fitness App</h3>
267
+ <p class="text-gray-700 mb-4">Mobile application for tracking workouts and nutrition with social features.</p>
268
+ <div class="flex flex-wrap gap-2">
269
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Flutter</span>
270
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Firebase</span>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ <div class="portfolio-item w-full flex-shrink-0 p-4">
275
+ <div class="bg-gray-100 rounded-lg p-6 h-full">
276
+ <img src="http://static.photos/design/1024x576/12" alt="Project 3" class="w-full h-64 object-cover rounded-lg mb-4">
277
+ <h3 class="text-xl font-bold mb-2">Corporate Website</h3>
278
+ <p class="text-gray-700 mb-4">Modern responsive website with CMS integration for a financial services company.</p>
279
+ <div class="flex flex-wrap gap-2">
280
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">WordPress</span>
281
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">PHP</span>
282
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">JavaScript</span>
283
+ </div>
284
+ </div>
285
+ </div>
286
+ </div>
287
+ <button class="portfolio-prev absolute left-4 top-1/2 -translate-y-1/2 bg-white hover:bg-gray-100 rounded-full p-3 shadow-md">
288
+ <i data-feather="chevron-left"></i>
289
+ </button>
290
+ <button class="portfolio-next absolute right-4 top-1/2 -translate-y-1/2 bg-white hover:bg-gray-100 rounded-full p-3 shadow-md">
291
+ <i data-feather="chevron-right"></i>
292
+ </button>
293
+ <div class="portfolio-indicators absolute bottom-4 left-1/2 -translate-x-1/2 flex space-x-2">
294
+ <button class="w-3 h-3 rounded-full bg-gray-300 hover:bg-blue-600"></button>
295
+ <button class="w-3 h-3 rounded-full bg-gray-300 hover:bg-blue-600"></button>
296
+ <button class="w-3 h-3 rounded-full bg-gray-300 hover:bg-blue-600"></button>
297
+ </div>
298
+ </div>
299
+
300
+ <script>
301
+ document.addEventListener('DOMContentLoaded', function() {
302
+ const carousel = document.querySelector('.portfolio-carousel');
303
+ const inner = carousel.querySelector('.portfolio-inner');
304
+ const items = carousel.querySelectorAll('.portfolio-item');
305
+ const prevBtn = carousel.querySelector('.portfolio-prev');
306
+ const nextBtn = carousel.querySelector('.portfolio-next');
307
+ const indicators = carousel.querySelectorAll('.portfolio-indicators button');
308
+
309
+ let currentIndex = 0;
310
+ const itemCount = items.length;
311
+
312
+ function updateCarousel() {
313
+ inner.style.transform = `translateX(-${currentIndex * 100}%)`;
314
+ indicators.forEach((indicator, index) => {
315
+ indicator.classList.toggle('bg-blue-600', index === currentIndex);
316
+ indicator.classList.toggle('bg-gray-300', index !== currentIndex);
317
+ });
318
+ }
319
+
320
+ nextBtn.addEventListener('click', () => {
321
+ currentIndex = (currentIndex + 1) % itemCount;
322
+ updateCarousel();
323
+ });
324
+
325
+ prevBtn.addEventListener('click', () => {
326
+ currentIndex = (currentIndex - 1 + itemCount) % itemCount;
327
+ updateCarousel();
328
+ });
329
+
330
+ indicators.forEach((indicator, index) => {
331
+ indicator.addEventListener('click', () => {
332
+ currentIndex = index;
333
+ updateCarousel();
334
+ });
335
+ });
336
+
337
+ // Auto-rotate every 7 seconds
338
+ setInterval(() => {
339
+ currentIndex = (currentIndex + 1) % itemCount;
340
+ updateCarousel();
341
+ }, 7000);
342
+ });
343
+ </script>
344
+ </div>
345
+ </section>
346
+
347
+ <section id="contact" class="py-20 bg-gray-100">
348
+ <div class="container mx-auto px-4">
349
+ <h2 class="text-3xl font-bold mb-6">Contact Us</h2>
350
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
351
+ <div>
352
+ <h3 class="text-xl font-semibold mb-4">Send us a message</h3>
353
+ <form class="space-y-4">
354
+ <div>
355
+ <label for="name" class="block text-gray-700 mb-2">Name</label>
356
+ <input type="text" id="name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
357
+ </div>
358
+ <div>
359
+ <label for="email" class="block text-gray-700 mb-2">Email</label>
360
+ <input type="email" id="email" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
361
+ </div>
362
+ <div>
363
+ <label for="subject" class="block text-gray-700 mb-2">Subject</label>
364
+ <input type="text" id="subject" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
365
+ </div>
366
+ <div>
367
+ <label for="message" class="block text-gray-700 mb-2">Message</label>
368
+ <textarea id="message" rows="5" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
369
+ </div>
370
+ <button type="submit" class="bg-blue-600 text-white px-6 py-3 rounded-lg hover:bg-blue-700 transition duration-300">Send Message</button>
371
+ </form>
372
+ </div>
373
+ <div>
374
+ <h3 class="text-xl font-semibold mb-4">Contact Information</h3>
375
+ <div class="space-y-6">
376
+ <div class="flex items-start">
377
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
378
+ <i data-feather="map-pin" class="text-blue-600"></i>
379
+ </div>
380
+ <div>
381
+ <h4 class="font-medium text-gray-800">Address</h4>
382
+ <p class="text-gray-600">123 Business Street, Suite 100<br>New York, NY 10001</p>
383
+ </div>
384
+ </div>
385
+ <div class="flex items-start">
386
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
387
+ <i data-feather="phone" class="text-blue-600"></i>
388
+ </div>
389
+ <div>
390
+ <h4 class="font-medium text-gray-800">Phone</h4>
391
+ <p class="text-gray-600">+1 (555) 123-4567</p>
392
+ </div>
393
+ </div>
394
+ <div class="flex items-start">
395
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
396
+ <i data-feather="mail" class="text-blue-600"></i>
397
+ </div>
398
+ <div>
399
+ <h4 class="font-medium text-gray-800">Email</h4>
400
+ <p class="text-gray-600">info@heeloworld.com</p>
401
+ </div>
402
+ </div>
403
+ <div class="flex items-start">
404
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
405
+ <i data-feather="clock" class="text-blue-600"></i>
406
+ </div>
407
+ <div>
408
+ <h4 class="font-medium text-gray-800">Hours</h4>
409
+ <p class="text-gray-600">Monday - Friday: 9am - 6pm<br>Saturday: 10am - 2pm<br>Sunday: Closed</p>
410
+ </div>
411
+ </div>
412
+ </div>
413
+ <div class="mt-8">
414
+ <h4 class="font-medium text-gray-800 mb-4">Follow Us</h4>
415
+ <div class="flex space-x-4">
416
+ <a href="#" class="bg-blue-600 text-white p-3 rounded-full hover:bg-blue-700 transition duration-300">
417
+ <i data-feather="facebook"></i>
418
+ </a>
419
+ <a href="#" class="bg-blue-400 text-white p-3 rounded-full hover:bg-blue-500 transition duration-300">
420
+ <i data-feather="twitter"></i>
421
+ </a>
422
+ <a href="#" class="bg-pink-600 text-white p-3 rounded-full hover:bg-pink-700 transition duration-300">
423
+ <i data-feather="instagram"></i>
424
+ </a>
425
+ <a href="#" class="bg-blue-700 text-white p-3 rounded-full hover:bg-blue-800 transition duration-300">
426
+ <i data-feather="linkedin"></i>
427
+ </a>
428
+ </div>
429
+ </div>
430
+ </div>
431
+ </div>
432
+ </div>
433
+ </section>
434
+ </main>
435
+
436
+ <script>AOS.init();</script>
437
+ <script>const { animate } = anime;</script>
438
+ <script>feather.replace();</script>
439
+ </body>
440
  </html>
prompts.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Edit the text to "HEELO WORLD"
2
+ add a header and 5 sections
3
+ Create an image carousel in the welcom section
4
+ put a resume like section in the about us section
5
+ create a grid picture on the OUR SERVICES section and make the image larger when hovered
6
+ Populate the CONTUCT US section
7
+ make a project porfolio caousel inth ePORTFOLIO section