-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
506 lines (450 loc) · 30.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRF - Coding Reshape Future Co. LTD</title>
<link rel="icon" href="https://cdn.crfnetwork.com/images/crf/crf-logo-clean.png" type="image/png" />
<meta name="google-adsense-account" content="ca-pub-4444769016710912">
<link href="https://fonts.googleapis.com/css?family=Reem+Kufi|Roboto:300" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4444769016710912"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.hero-gradient {
background: linear-gradient(135deg, #0f2027, #204320, #34642c);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.social-icon {
transition: all 0.3s ease;
}
.social-icon:hover {
transform: scale(1.2);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md fixed w-full z-10">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="text-green-600 text-3xl font-bold">CRF</div>
<div class="hidden md:block text-gray-600 text-sm">Coding Reshape Future</div>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="text-gray-700 hover:text-green-600 font-medium">Home</a>
<a href="#about" class="text-gray-700 hover:text-green-600 font-medium">About</a>
<a href="#services" class="text-gray-700 hover:text-green-600 font-medium">Services</a>
<a href="#community" class="text-gray-700 hover:text-green-600 font-medium">Community</a>
<a href="#contact" class="text-gray-700 hover:text-green-600 font-medium">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-gray-700 focus:outline-none">
<i class="fa-solid fa-bars text-xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t">
<div class="container mx-auto px-4 py-2 flex flex-col space-y-3">
<a href="#home" class="text-gray-700 hover:text-green-600 font-medium py-2">Home</a>
<a href="#about" class="text-gray-700 hover:text-green-600 font-medium py-2">About</a>
<a href="#services" class="text-gray-700 hover:text-green-600 font-medium py-2">Services</a>
<a href="#community" class="text-gray-700 hover:text-green-600 font-medium py-2">Community</a>
<a href="#contact" class="text-gray-700 hover:text-green-600 font-medium py-2">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient min-h-screen flex items-center pt-16">
<div class="container mx-auto px-4 py-16">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 text-center md:text-left text-white">
<h1 class="text-4xl md:text-6xl font-bold mb-4">Hello, we are CRF</h1>
<h2 class="text-xl md:text-3xl font-light mb-8">- Coding Reshape Future -</h2>
<p class="text-lg md:text-xl mb-8 opacity-90">We provide free technology, education and support solutions for those who are just starting out, out of the industry or struggling in the IT industry.</p>
<div class="flex flex-wrap justify-center md:justify-start gap-4">
<a href="#contact" class="bg-green-600 hover:bg-green-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300">Get Started</a>
<a href="#about" class="bg-transparent border-2 border-white text-white font-medium py-3 px-6 rounded-lg hover:bg-white hover:text-green-600 transition duration-300">Learn More</a>
</div>
</div>
<div class="md:w-1/2 mt-12 md:mt-0 flex justify-center">
<div class="animate-float">
<svg xmlns="http://www.w3.org/2000/svg" width="350" height="350" viewBox="0 0 200 200" class="text-white">
<circle cx="100" cy="100" r="80" fill="none" stroke="currentColor" stroke-width="2"></circle>
<g fill="none" stroke="currentColor">
<path d="M40,70 Q100,20 160,70" stroke-width="2"></path>
<path d="M40,130 Q100,180 160,130" stroke-width="2"></path>
<path d="M70,40 Q20,100 70,160" stroke-width="2"></path>
<path d="M130,40 Q180,100 130,160" stroke-width="2"></path>
</g><image href="https://cdn.crfnetwork.com/images/crf/crf-logo-clean.png" x="60" y="60" width="80" height="80"></image>
<circle cx="100" cy="100" r="40" fill="rgba(255,255,255,0.1)"></circle>
<text x="50%" y="190px" dominant-baseline="middle" text-anchor="middle" fill="currentColor" font-size="10">CODING RESHAPE FUTURE</text>
</svg>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">About CRF</h2>
<div class="w-24 h-1 bg-green-600 mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Our Mission</h3>
<p class="text-gray-600 mb-6">We put a lot of effort into how young people can have the best programming background. We also create a blended learning environment where young people can learn and share knowledge with each other. At the same time, we also build an accurate and efficient knowledge system.</p>
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Our Vision</h3>
<p class="text-gray-600 mb-6">We are always eager to synthesize and share all of our knowledge about technology, programming, security, and a lot of useful knowledge about pre-IT for everyone to help young people can follow their passion and the path they have chosen.</p>
<div class="flex flex-wrap gap-4 mt-8">
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-full mr-3">
<i class="fa-solid fa-graduation-cap text-green-600 text-xl"></i>
</div>
<span class="text-gray-700 font-medium">Quality Education</span>
</div>
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-full mr-3">
<i class="fa-solid fa-users text-green-600 text-xl"></i>
</div>
<span class="text-gray-700 font-medium">Community Support</span>
</div>
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-full mr-3">
<i class="fa-solid fa-lightbulb text-green-600 text-xl"></i>
</div>
<span class="text-gray-700 font-medium">Innovation</span>
</div>
</div>
</div>
<div class="md:w-1/2 grid grid-cols-2 gap-6">
<div class="bg-gray-50 p-6 rounded-lg shadow-md card-hover transition-all duration-300">
<div class="text-green-600 text-3xl mb-4">
<i class="fa-solid fa-code"></i>
</div>
<h4 class="text-xl font-semibold text-gray-800 mb-2">Coding Expertise</h4>
<p class="text-gray-600">Expert-led training in modern programming languages and frameworks.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-md card-hover transition-all duration-300">
<div class="text-green-600 text-3xl mb-4">
<i class="fa-solid fa-chalkboard-teacher"></i>
</div>
<h4 class="text-xl font-semibold text-gray-800 mb-2">Education Platform</h4>
<p class="text-gray-600">Comprehensive learning resources for beginners to advanced developers.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-md card-hover transition-all duration-300">
<div class="text-green-600 text-3xl mb-4">
<i class="fa-solid fa-handshake"></i>
</div>
<h4 class="text-xl font-semibold text-gray-800 mb-2">Industry Partnerships</h4>
<p class="text-gray-600">Collaborations with leading tech companies and organizations.</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-md card-hover transition-all duration-300">
<div class="text-green-600 text-3xl mb-4">
<i class="fa-solid fa-rocket"></i>
</div>
<h4 class="text-xl font-semibold text-gray-800 mb-2">Career Growth</h4>
<p class="text-gray-600">Supporting your journey from learning to professional success.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Services</h2>
<div class="w-24 h-1 bg-green-600 mx-auto mb-6"></div>
<p class="text-gray-600 max-w-2xl mx-auto">We offer a comprehensive range of services designed to help individuals and organizations harness the power of technology.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white rounded-lg shadow-md overflow-hidden card-hover transition-all duration-300">
<div class="bg-green-600 text-white p-4 text-center">
<i class="fa-solid fa-laptop-code text-4xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-3">Coding Education</h3>
<p class="text-gray-600 mb-4">Structured courses, workshops, and tutorials for all skill levels. Learn programming languages, frameworks, and development methodologies.</p>
<a href="#" class="text-green-600 font-medium hover:underline flex items-center">
Learn more <i class="fa-solid fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden card-hover transition-all duration-300">
<div class="bg-green-600 text-white p-4 text-center">
<i class="fa-solid fa-users-gear text-4xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-3">Community Building</h3>
<p class="text-gray-600 mb-4">Join our thriving community of developers, mentors, and tech enthusiasts. Networking events, forums, and collaborative projects.</p>
<a href="#" class="text-green-600 font-medium hover:underline flex items-center">
Learn more <i class="fa-solid fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden card-hover transition-all duration-300">
<div class="bg-green-600 text-white p-4 text-center">
<i class="fa-solid fa-gears text-4xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-3">Tech Solutions</h3>
<p class="text-gray-600 mb-4">Custom software development, consulting services, and technical support for businesses and organizations of all sizes.</p>
<a href="#" class="text-green-600 font-medium hover:underline flex items-center">
Learn more <i class="fa-solid fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Join Our Community</h2>
<div class="w-24 h-1 bg-green-600 mx-auto mb-6"></div>
<p class="text-gray-600 max-w-2xl mx-auto">Connect with like-minded individuals, share knowledge, and grow together in our vibrant tech community.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-gray-50 p-6 rounded-lg shadow-sm text-center card-hover transition-all duration-300">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fa-brands fa-facebook text-green-600 text-2xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Facebook</h3>
<p class="text-gray-600 mb-4">Follow our page for updates, events, and tech insights.</p>
<a href="https://www.facebook.com/codingreshapefuture/" target="_blank" class="inline-block bg-green-600 text-white py-2 px-4 rounded-lg hover:bg-green-700 transition duration-300">Join Now</a>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm text-center card-hover transition-all duration-300">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fa-solid fa-user-group text-green-600 text-2xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Facebook Group</h3>
<p class="text-gray-600 mb-4">Join our community group for beginners in IT and coding.</p>
<a href="https://www.facebook.com/groups/itforbeginners/" target="_blank" class="inline-block bg-green-600 text-white py-2 px-4 rounded-lg hover:bg-green-700 transition duration-300">Join Now</a>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm text-center card-hover transition-all duration-300">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fa-brands fa-youtube text-green-600 text-2xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">YouTube Channels</h3>
<p class="text-gray-600 mb-4">Educational videos, tutorials, and tech discussions.</p>
<div class="flex flex-col space-y-2">
<a href="https://www.youtube.com/@CodingReshapeFuture/" target="_blank" class="inline-block bg-green-600 text-white py-2 px-4 rounded-lg hover:bg-green-700 transition duration-300">Main Channel</a>
<a href="https://www.youtube.com/@CRFCommunity/" target="_blank" class="inline-block bg-gray-200 text-gray-700 py-2 px-4 rounded-lg hover:bg-gray-300 transition duration-300">Community Channel</a>
</div>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm text-center card-hover transition-all duration-300">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fa-solid fa-school text-green-600 text-2xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Education Platform</h3>
<p class="text-gray-600 mb-4">Access our comprehensive learning resources and courses.</p>
<a href="https://education.crfnetwork.com/" target="_blank" class="inline-block bg-green-600 text-white py-2 px-4 rounded-lg hover:bg-green-700 transition duration-300">Start Learning</a>
</div>
</div>
<div class="mt-16 text-center">
<h3 class="text-2xl font-semibold text-gray-800 mb-6">Follow Us On Social Media</h3>
<div class="flex flex-wrap justify-center gap-6">
<a href="https://www.facebook.com/codingreshapefuture/" target="_blank" class="social-icon text-blue-600 hover:text-green-800 text-3xl">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="https://www.youtube.com/@CodingReshapeFuture/" target="_blank" class="social-icon text-red-600 hover:text-red-800 text-3xl">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="https://www.tiktok.com/@codingreshapefuture/" target="_blank" class="social-icon text-gray-800 hover:text-black text-3xl">
<i class="fa-brands fa-tiktok"></i>
</a>
<a href="https://blog.crfnetwork.com/" target="_blank" class="social-icon text-orange-600 hover:text-orange-800 text-3xl">
<i class="fa-solid fa-rss"></i>
</a>
<a href="https://github.com/codingreshapefuture/" target="_blank" class="social-icon text-gray-800 hover:text-black text-3xl">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://www.linkedin.com/company/codingreshapefuture/" target="_blank" class="social-icon text-blue-700 hover:text-green-900 text-3xl">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Get In Touch</h2>
<div class="w-24 h-1 bg-green-600 mx-auto mb-6"></div>
<p class="text-gray-600 max-w-2xl mx-auto">Have questions or want to learn more about our services? Reach out to us today.</p>
</div>
<div class="flex flex-col md:flex-row gap-12">
<div class="md:w-1/2 bg-white p-8 rounded-lg shadow-md">
<h3 class="text-2xl font-semibold text-gray-800 mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fa-solid fa-envelope text-green-600"></i>
</div>
<div>
<h4 class="text-lg font-medium text-gray-800">Email</h4>
<p class="text-gray-600">admin@crfnetwork.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fa-solid fa-location-dot text-green-600"></i>
</div>
<div>
<h4 class="text-lg font-medium text-gray-800">Location</h4>
<p class="text-gray-600">52 P. Hai Bà Trưng, Trần Hưng Đạo, Hoàn Kiếm, Hà Nội</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fa-solid fa-phone text-green-600"></i>
</div>
<div>
<h4 class="text-lg font-medium text-gray-800">Phone</h4>
<p class="text-gray-600">(+84) 967 56 3080</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 bg-white p-8 rounded-lg shadow-md">
<h3 class="text-2xl font-semibold text-gray-800 mb-6">Send Us a Message</h3>
<form id="contact-form" class="space-y-6">
<div>
<label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
<input type="text" id="name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-600" placeholder="Enter your name" required>
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-600" placeholder="Enter your email" required>
</div>
<div>
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" name="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-600" placeholder="Enter your message" required></textarea>
</div>
<button type="submit" class="w-full bg-green-600 text-white font-medium py-3 px-6 rounded-lg hover:bg-green-700 transition duration-300">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-semibold mb-4">CRF</h3>
<p class="text-gray-400 mb-4">Coding Reshape Future Co. LTD</p>
<p class="text-gray-400">Empowering the next generation of developers through education, community, and innovation.</p>
</div>
<div>
<h3 class="text-xl font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">Services</a></li>
<li><a href="#community" class="text-gray-400 hover:text-white transition duration-300">Community</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="https://blog.crfnetwork.com/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
<li><a href="https://education.crfnetwork.com/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">Education Platform</a></li>
<li><a href="https://github.com/codingreshapefuture/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">GitHub</a></li>
<li><a href="https://blog.crfnetwork.com/privacy-policy/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold mb-4">Connect With Us</h3>
<div class="flex space-x-4 mb-4">
<a href="https://www.facebook.com/codingreshapefuture/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fa-brands fa-facebook text-xl"></i>
</a>
<a href="https://www.youtube.com/@CodingReshapeFuture/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fa-brands fa-youtube text-xl"></i>
</a>
<a href="https://www.tiktok.com/@codingreshapefuture/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fa-brands fa-tiktok text-xl"></i>
</a>
<a href="https://www.linkedin.com/company/codingreshapefuture/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fa-brands fa-linkedin text-xl"></i>
</a>
</div>
<p class="text-gray-400">Subscribe to our newsletter for updates</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="px-4 py-2 text-gray-700 rounded-l-lg focus:outline-none flex-grow">
<button class="bg-green-600 text-white px-4 py-2 rounded-r-lg hover:bg-green-700 transition duration-300">
<i class="fa-solid fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center">
<p class="text-gray-400">© 2023 CRF - Coding Reshape Future Co. LTD. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
menuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 70,
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Contact form submission
const contactForm = document.getElementById('contact-form');
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const message = document.getElementById('message').value;
// This is a demo form - in a real implementation, you would send this data to a server
alert(`Thanks for contacting us, ${name}. But the contact form is a demo feature only! Please send us an email using your email ${email}`);
contactForm.reset();
});
</script>
</html>