-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
532 lines (487 loc) · 31.7 KB
/
about.html
File metadata and controls
532 lines (487 loc) · 31.7 KB
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Love Care</title>
<meta name="description" content="Discover Love Care's premium skincare products crafted to enhance your natural beauty. Shop moisturizers, serums, and cleansers for radiant, healthy skin.">
<meta name="keywords" content="skincare, beauty products, moisturizers, serums, cleansers, Love Care, natural skincare, premium skincare">
<meta name="author" content="Love Care">
<meta name="robots" content="index, follow">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<script>
tailwind.config = {
darkMode: 'class', // or 'media'
}
</script>
<style>
.fade-in {
animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-gradient {
background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.team-card {
transition: all 0.3s ease;
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.value-card {
transition: all 0.3s ease;
}
.value-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.timeline-item {
position: relative;
}
.timeline-item::before {
content: '';
position: absolute;
left: 20px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, #ec4899, #db2777);
}
.timeline-item:last-child::before {
display: none;
}
.mobile-menu {
display: none;
}
@media (max-width: 768px) {
.desktop-nav {
display: none;
}
}
</style>
</head>
<body class="bg-pink-100 dark:bg-gray-900 min-h-screen text-gray-800 dark:text-white transition-colors duration-300">
<!-- Header -->
<header class="bg-pink-100 dark:bg-gray-900 border-b border-pink-200 sticky top-0 z-50 ">
<div class="container mx-auto px-4 py-4">
<div class="flex items-center justify-between ">
<!-- Logo (left side) -->
<a href="index.html" class="flex items-center space-x-3">
<div class="w-12 h-12 space-x-3">
<img src="https://images.scalebranding.com/heart-care-logo-c5a5346c-b932-4532-92c0-bb692dd6b976.jpg"
alt="Love care Logo" class="w-full h-full object-cover rounded-full">
</div>
<span class="text-2xl font-bold text-gray-800 dark:text-white transition-colors"
style="font-family: 'Caveat', cursive; font-size: 30px;">
Lσʋҽ <span class="text-pink-500 ">Cαɾҽ</span>
</span>
</a>
<!-- Navigation Centered -->
<nav class="desktop-nav hidden md:flex space-x-20 justify-center flex-1 ">
<a href="index.html"
class="text-gray-700 hover:text-pink-600 dark:text-white transition-colors flex items-center justify-center">Home</a>
<a href="shop.html"
class="text-gray-700 dark:text-white hover:text-pink-600 transition-colors flex items-center justify-center">Shop</a>
<a href="about.html" class="text-pink-700 font-semibold flex items-center justify-center">About</a>
<a href="contact.html"
class="text-gray-700 dark:text-white hover:text-pink-600 transition-colors flex items-center justify-center">Contact</a>
</nav>
<!-- Icons (right side) -->
<div class="flex items-center space-x-10">
<button id="theme-toggle" class="text-gray-600 dark:text-gray-600 text-xl">
<i id="theme-icon" class="fas fa-moon"></i>
</button>
<a href="./profile.html"><i
class="fas fa-user text-gray-700 hover:text-pink-600 transition-colors flex items-center justify-center"></i></a>
<div class="relative">
<a href="./cart.html" class="block">
<i
class="fas fa-shopping-cart text-gray-600 cursor-pointer hover:text-pink-600 transition-colors"></i>
<span
class="absolute -top-2 -right-2 bg-red-500 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center">3</span>
</a>
</div>
<i
class="fas fa-bars text-gray-600 cursor-pointer hover:text-pink-600 transition-colors md:hidden"></i>
</div>
</div>
</div>
</header>
<main class="bg-white dark:bg-gray-900 min-h-screen">
<!-- About Hero Section -->
<!-- <section class="bg-pink-100 dark:bg-gray-900 py-16 ">
<div class="container mx-auto px-4">
<div class="text-center fade-in">
<h1 class="text-4xl md:text-6xl font-bold text-gray-800 dark:text-white mb-4">About Lσʋҽ <span
class="text-pink-500">Cαɾҽ</span></h1>
<p class="text-lg text-black dark:text-white max-w-3xl mx-auto">
We believe that beauty comes from within, and our mission is to enhance your natural radiance
with
premium, carefully crafted skincare products that nourish both your skin and soul.
</p>
</div>
</div>
</section> -->
<!-- Our Story Section -->
<section class=" py-16">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div class="fade-in">
<h2 class="text-3xl font-bold text-gray-800 dark:text-white mb-6">Our Story</h2>
<p class="text-gray-600 dark:text-white mb-4">
This is the first Mini - Project from the Web Design Evening Class in ISTAD GEN 4<sup>th</sup>, Lσʋҽ <span
class="text-pink-500">Cαɾҽ</span> began as a small business with a simple vision: to
create
natural, effective skincare products that celebrate the beauty of every individual. What
started
in a small group has grown into a trusted brand loved by thousands worldwide.
</p>
<p class="text-gray-600 dark:text-white mb-4">
We want to create this wbsite because we all used to struggled with sensitive skin and
difficultto find the suitable Skincare products for years before discovering the power of
natural ingredients. Frustrated by harsh chemicals and artificial additives in commercial
products, and began experimenting with botanical extracts and essential oils in kitchen.
</p>
<p class="text-gray-600 dark:text-white mb-6">
Today, Lσʋҽ <span class="text-pink-500">Cαɾҽ</span> continues to honor that original
commitment
to purity, sustainability, and effectiveness. Every product is carefully formulated with
love,
tested for quality, and designed to help you feel confident in your own skin.
</p>
<div class="flex items-center space-x-6">
<div class="text-center">
<div class="text-2xl font-bold text-pink-600">50K+</div>
<div class="text-sm text-gray-600">Happy Customers</div>
</div>
<div class="text-center">
<div class="text-2xl font-bold text-pink-600">100+</div>
<div class="text-sm text-gray-600">Products</div>
</div>
<div class="text-center">
<div class="text-2xl font-bold text-pink-600">6</div>
<div class="text-sm text-gray-600">Years Experience</div>
</div>
</div>
</div>
<div class="fade-in">
<div class="relative">
<img src="https://id.loccitane.com/cdn/shop/articles/Month_8_-_Article_4_-_Preview.webp?v=1732103471"
alt="Our Story" class="rounded-lg shadow-lg w-full">
<!-- <div class="absolute -bottom-6 -left-6 bg-white p-6 rounded-lg shadow-lg max-w-xs">
<div class="flex items-center space-x-3">
</div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- Our Values Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12 fade-in">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Why Lσʋҽ <span class="text-pink-500 hover:text-blue-600">Cαɾҽ</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">This is the principles that guide everything we do</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="value-card bg-pink-50 p-6 rounded-lg text-center fade-in">
<div class="bg-pink-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-leaf text-pink-600 text-2xl"></i>
</div>
<h3 class="font-semibold text-gray-800 mb-3">High-Quality Ingredients</h3>
<p class="text-gray-600 text-sm">We use only the finest natural and organic ingredients, sourced
ethically and sustainably from around the world.</p>
</div>
<div class="value-card bg-green-50 p-6 rounded-lg text-center fade-in">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-recycle text-green-600 text-2xl"></i>
</div>
<h3 class="font-semibold text-gray-800 mb-3">Sustainability</h3>
<p class="text-gray-600 text-sm">Our commitment to the environment includes eco-friendly
packaging
and sustainable sourcing practices.</p>
</div>
<div class="value-card bg-blue-50 p-6 rounded-lg text-center fade-in">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-flask text-blue-600 text-2xl"></i>
</div>
<h3 class="font-semibold text-gray-800 mb-3">Educational Content</h3>
<p class="text-gray-600 text-sm">Tips and guides to help you build the perfect routine.</p>
</div>
<div class="value-card bg-purple-50 p-6 rounded-lg text-center fade-in">
<div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-heart text-purple-600 text-2xl"></i>
</div>
<h3 class="font-semibold text-gray-800 mb-3">Cruelty-Free</h3>
<p class="text-gray-600 text-sm ">We never test on animals and are proud to be certified
cruelty-free
by leading organizations.</p>
</div>
<div class="value-card bg-yellow-50 p-6 rounded-lg text-center fade-in">
<div class="bg-yellow-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-users text-yellow-600 text-2xl"></i>
</div>
<h3 class="font-semibold text-gray-800 mb-3">Community</h3>
<p class="text-gray-600 text-sm">We believe in building a supportive community where everyone
feels
beautiful and confident in their own skin.</p>
</div>
<div class="value-card bg-red-50 p-6 rounded-lg text-center fade-in">
<div class="bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-award text-red-600 text-2xl"></i>
</div>
<h3 class="font-semibold text-gray-800 mb-3">Quality</h3>
<p class="text-gray-600 text-sm">We maintain the highest standards of quality in every product,
from
formulation to packaging.</p>
</div>
</div>
</div>
</section>
<!-- Timeline Section -->
<!-- Team Section -->
<section class="py-1 bg-gray-50 dark:bg-gray-900 ">
<div class="container mx-auto px-4">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-5">
<!-- Mentors Section -->
<div class="mb-16">
<h2 class="text-3xl font-bold text-gray-900 dark:text-white mb-8 text-center">Our Teacher</h2>
<div class="flex justify-center">
<div class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4">
<!-- Mentor Card -->
<article
class="bg-white dark:bg-gray-800 rounded-xl overflow-hidden shadow-md hover:shadow-lg transition-shadow duration-300">
<figure class="relative aspect-[3/4]">
<img src="./img/cher.jpg" alt="Saren Ratanak"
class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/30 to-transparent">
</div>
</figure>
<div class="p-6 text-center">
<h3 class="text-xl font-bold text-gray-900 dark:text-white">Sokcheat Srorng</h3>
<p class="text-primary font-medium mb-4">Teacher</p>
<div class="flex justify-center space-x-3">
<a href="#" target="_blank" rel="noopener noreferrer"
class="w-9 h-9 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-800 dark:text-gray-200 hover:bg-blue-600 hover:text-white transition-colors duration-300"
aria-label="Facebook">
<i class="fab fa-facebook-f text-sm"></i>
</a>
<a href="#" target="_blank" rel="noopener noreferrer"
class="w-9 h-9 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-800 dark:text-gray-200 hover:bg-gray-800 hover:text-white transition-colors duration-300"
aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</article>
</div>
</div>
</div>
<!-- Team Section -->
<div class="px-4 sm:px-6 lg:px-8 py-5">
<h2 class="text-3xl font-bold text-gray-900 dark:text-white mb-8 text-center">Our Team</h2>
<section
class="max-w-7xl mx-auto grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-y-6 justify-items-center">
<!-- Team Member 1 -->
<article
class="bg-white dark:bg-gray-800 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 w-full max-w-[280px]">
<!-- Image container with 3:4 aspect ratio -->
<figure class="relative aspect-[3/4]">
<img src="./img/ry.png" alt="" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/30 to-transparent"></div>
</figure>
<!-- Content area -->
<div class="p-4 text-center">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Puth Sovannary</h3>
<p class="text-primary text-sm font-medium mt-1 mb-3">Leader</p>
<!-- Social links -->
<div class="flex justify-center space-x-3">
<a href="https://web.facebook.com/ipwettyluwary" target="_blank" rel="noopener noreferrer"
class="w-8 h-8 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-700 dark:text-gray-300 hover:bg-blue-600 hover:text-white transition-colors duration-200 text-sm"
aria-label="Facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://github.com/4nayru" target="_blank" rel="noopener noreferrer"
class="w-8 h-8 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-700 dark:text-gray-300 hover:bg-gray-800 hover:text-white transition-colors duration-200 text-sm"
aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</article>
<!-- Team Member 2 -->
<article
class="bg-white dark:bg-gray-800 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 w-full max-w-[280px]">
<!-- Image container with 3:4 aspect ratio -->
<figure class="relative aspect-[3/4]">
<img src="img/nang.JPG" alt="Lorn Somnang" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/30 to-transparent"></div>
</figure>
<!-- Content area -->
<div class="p-4 text-center">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Lorn Somnang</h3>
<p class="text-primary text-sm font-medium mt-1 mb-3">Front-End</p>
<!-- Social links -->
<div class="flex justify-center space-x-3">
<a href="#" target="_blank" rel="noopener noreferrer"
class="w-8 h-8 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-700 dark:text-gray-300 hover:bg-blue-600 hover:text-white transition-colors duration-200 text-sm"
aria-label="Facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://github.com/DeeChay03" target="_blank" rel="noopener noreferrer"
class="w-8 h-8 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-700 dark:text-gray-300 hover:bg-gray-800 hover:text-white transition-colors duration-200 text-sm"
aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</article>
<!-- Team Member 3 -->
<article
class="bg-white dark:bg-gray-800 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 w-full max-w-[280px]">
<!-- Image container with 3:4 aspect ratio -->
<figure class="relative aspect-[3/4]">
<img src="img/jimmy.png" alt="" class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/30 to-transparent"></div>
</figure>
<!-- Content area -->
<div class="p-4 text-center">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Chit Chimy</h3>
<p class="text-primary text-sm font-medium mt-1 mb-3">Front-End</p>
<!-- Social links -->
<div class="flex justify-center space-x-3">
<a href="#" target="_blank" rel="noopener noreferrer"
class="w-8 h-8 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-700 dark:text-gray-300 hover:bg-blue-600 hover:text-white transition-colors duration-200 text-sm"
aria-label="Facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" target="_blank" rel="noopener noreferrer"
class="w-8 h-8 rounded-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-gray-700 dark:text-gray-300 hover:bg-gray-800 hover:text-white transition-colors duration-200 text-sm"
aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</article>
</section>
</main>
<!-- Footer -->
<footer class="bg-pink-100 dark:bg-gray-900 dark:text white border-t border-pink-200 py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<a href="index.html" class="flex items-center space-x-3">
<div class="w-12 h-12">
<img src="https://images.scalebranding.com/heart-care-logo-c5a5346c-b932-4532-92c0-bb692dd6b976.jpg"
alt="Love care Logo" class="w-full h-full object-cover rounded-full">
</div>
<span class="text-2xl font-bold text-gray-800 hover:text-pink-600 dark:text-white transition-colors"
style="font-family: 'Caveat', cursive; font-size: 30px;">
Lσʋҽ <span class="text-pink-500 hover:text-blue-600">Cαɾҽ</span>
</span>
</a>
<p class="text-gray-600 dark:text-white text-sm mb-4">Premium beauty and skincare products for your daily
routine.
</p>
<div class="flex space-x-4 ">
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-600 hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h4 class="font-semibold text-gray-800 dark:text-white mb-4">Quick Links</h4>
<ul class="space-y-2 text-sm text-gray-600">
<li><a href="index.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Home</a></li>
<li><a href="shop.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Shop</a></li>
<li><a href="about.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">About</a></li>
<li><a href="contact.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Contact</a></li>
<li><a href="cart.html" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Cart</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-gray-800 dark:text-white mb-4">Customer Service</h4>
<ul class="space-y-2 text-sm text-gray-600">
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">FAQ</a></li>
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Shipping</a></li>
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Returns</a></li>
<li><a href="#" class="hover:text-pink-600 dark:text-white dark:hover:text-pink-600 transition-colors">Support</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-gray-800 dark:text-white mb-4">Contact Info</h4>
<ul class="space-y-2 text-sm text-gray-600">
<li><i class="fas fa-envelope mr-2 dark:text-white dark:hover:text-pink-600">
</i>info@lovecare.com</li>
<li><i class="fas fa-phone mr-2 dark:text-white dark:hover:text-pink-600">
</i>(855) 962-682-908</li>
<li><i class="fas fa-map-marker-alt mr-2 dark:text-white dark:hover:text-pink-600">
</i class="text-gray-300 dark:text-white ">123 Beauty St, Phnom Penh City</li>
<!-- School Logo -->
<div class="mb-6 py-3">
<div class="flex items-center space-x-4 mb-4">
<div>
<h4 class="font-semibold text-gray-800 dark:text-white">Organized by</h4>
</div>
<img src="./img/istad-logo-2024.png" alt="School Logo" class="h-16 w-auto rounded-lg">
</div>
<p class="text-gray-400 dark:text-white text-sm leading-relaxed">
Institute of Science and Technology Advanced Development - Premier educational
institution
shaping future innovators.
</p>
</div>
</ul>
</div>
</div>
<div class="border-t border-pink-200 mt-8 pt-8 text-center text-sm text-gray-600 dark:text-white dark:hover:text-pink-600">
<p>© 2025 Lσʋҽ <span class="text-pink-500">Cαɾҽ</span>. All rights reserved. | <a href="#"
class="hover:text-pink-600">Privacy Policy</a> | <a href="#"
class="hover:text-pink-600">Terms
of Service</a></p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function () {
const toggleBtn = document.getElementById('theme-toggle');
const icon = document.getElementById('theme-icon');
const html = document.documentElement;
// Load saved theme
if (localStorage.getItem('theme') === 'dark') {
html.classList.add('dark');
icon?.classList.replace('fa-moon', 'fa-sun');
}
toggleBtn?.addEventListener('click', () => {
html.classList.toggle('dark');
const isDark = html.classList.contains('dark');
icon?.classList.toggle('fa-moon', !isDark);
icon?.classList.toggle('fa-sun', isDark);
localStorage.setItem('theme', isDark ? 'dark' : 'light');
});
});
</script>
<script src="https://kit.fontawesome.com/80a807db0f.js" crossorigin="anonymous"></script>
</body>
</html>