-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofile.html
More file actions
603 lines (562 loc) · 38.3 KB
/
profile.html
File metadata and controls
603 lines (562 loc) · 38.3 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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile - Love Care</title>
<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 -->
<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 dark:border-pink-900 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">
<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 transition-colors dark:text-white"
style="font-family: 'Caveat', cursive; font-size: 30px;">
Lσʋҽ <span class="text-pink-500 hover:text-blue-600">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 dark:text-white hover:text-pink-600 dark:hover:text-pink-600 transition-colors flex items-center justify-center">Home</a>
<a href="shop.html"
class="text-pink-600 dark:text-pink-500 dark:hover:text-white font-semibold flex items-center justify-center">Shop</a>
<a href="about.html"
class="text-gray-700 dark:text-white dark:hover:text-pink-500 hover:text-pink-600 transition-colors flex items-center justify-center">About</a>
<a href="contact.html"
class="text-gray-700 dark:text-white dark:hover:text-pink-500 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-white dark:hover:text-pink-500 text-xl">
<i id="theme-icon" class="fas fa-moon"></i>
</button>
<a href="./profile.html"><i
class="fas fa-user text-gray-600 dark:text-white cursor-pointer hover:text-pink-600 dark:hover:text-pink-500 transition-colors"></i></a>
<div class="relative">
<a href="./cart.html" class="block">
<i
class="fas fa-shopping-cart text-gray-600 dark:text-white cursor-pointer hover:text-pink-600 dark:hover:text-pink-500 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 dark:text-white cursor-pointer hover:text-pink-600 dark:hover:text-pink-500 transition-colors md:hidden"></i>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- About Hero Section -->
<main class="py-4 sm:py-8 bg-white dark:bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- Page Header -->
<div class="mb-6 sm:mb-8 text-center">
<h1 class="text-2xl sm:text-3xl font-bold text-gray-800 dark:text-white">My Account</h1>
<p class="mt-1 sm:mt-2 text-sm sm:text-base text-gray-600 dark:text-gray-400">Manage your profile,
orders, and preferences</p>
</div>
<div class="flex flex-col lg:flex-row gap-4 sm:gap-6 lg:gap-8">
<!-- Profile Sidebar with Navigation -->
<div class="lg:w-1/4">
<div
class="bg-white dark:bg-gray-800 rounded-xl shadow-custom dark:shadow-custom-dark overflow-hidden">
<!-- User Card -->
<div
class="p-4 sm:p-6 flex flex-col items-center border-b border-gray-200 dark:border-gray-700">
<div class="relative w-20 h-20 sm:w-24 sm:h-24 mb-3 sm:mb-4">
<img src="https://i.pinimg.com/1200x/ff/54/e3/ff54e3d714e9cc1ba683e57b2e8e2af3.jpg"
alt="User profile"
class="w-full h-full rounded-full object-cover border-4 border-white shadow-lg">
<div
class="absolute bottom-0 right-0 sm:bottom-1 sm:right-1 bg-primary text-white w-6 h-6 sm:w-8 sm:h-8 rounded-full flex items-center justify-center cursor-pointer transition-colors hover:bg-blue-700">
<i class="fas fa-pen fa-xs"></i>
</div>
</div>
<h2 class="text-lg sm:text-xl font-bold text-gray-800 dark:text-white">Puth Sovannary</h2>
<p class="text-sm sm:text-base text-gray-600 dark:text-gray-400 mt-1">
sovannary.puth121@example.com</p>
<span
class="mt-2 sm:mt-3 inline-block px-2 py-0.5 sm:px-3 sm:py-1 bg-gradient-to-r bg-pink-400 text-white text-xs font-bold rounded-full">Premium
Member</span>
</div>
<div
class="px-4 py-3 sm:px-6 sm:py-4 flex justify-between border-b border-gray-200 dark:border-gray-700">
<div class="text-center">
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Member Since</p>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">Jun 2022</p>
</div>
<div class="text-center">
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Loyalty Points</p>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">1,240 pts</p>
</div>
</div>
<!-- Mobile Dropdown Navigation -->
<div class="lg:hidden">
<button id="account-mobile-menu-button"
class="w-full flex justify-between items-center px-4 py-3 bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors">
<span class="font-medium text-gray-800 dark:text-white">Menu</span>
<i class="fas fa-chevron-down text-gray-500 dark:text-gray-400 transition-transform duration-200"
id="account-mobile-menu-icon"></i>
</button>
<div id="account-mobile-menu" class="hidden bg-white dark:bg-gray-800">
<a href="./profile.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-primary">
<i
class="fas fa-user-circle text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Profile Overview</span>
</a>
<a href="./my-order.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fas fa-shopping-bag text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">My Orders</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">4</span>
</a>
<a href="./wishlist.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i class="fas fa-heart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Wishlist</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">3</span>
</a>
<a href="./cart.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fas fa-shopping-cart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Cart</span>
<span class="bg-primary text-white text-xs px-2 py-1 rounded-full">2</span>
</a>
<a href="./payment-method.html"
class="nav-link flex items-center px-6 py-3 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fa-solid fa-credit-card text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Payment Method</span>
</a>
<a href="../../../index.html"
class="flex items-center px-6 py-3 text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20 transition-colors border-l-4 border-transparent">
<i class="fas fa-sign-out-alt w-6 text-center mr-3"></i>
<span class="flex-1">Sign Out</span>
</a>
</div>
</div>
<!-- Desktop Navigation -->
<div class="hidden lg:block py-2">
<a href="./profile.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-pink-500">
<i class="fas fa-user-circle text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Profile Overview</span>
</a>
<a href="./my-order.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fas fa-shopping-bag text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">My Orders</span>
<span class="bg-red-500 text-white text-xs px-2 py-1 rounded-full">4</span>
</a>
<a href="./wishlist.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i class="fas fa-heart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Wishlist</span>
<span class="bg-red-500 text-white text-xs px-2 py-1 rounded-full">3</span>
</a>
<a href="./cart.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fas fa-shopping-cart text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Cart</span>
<span class="bg-red-500 text-white text-xs px-2 py-1 rounded-full">2</span>
</a>
<a href="./payment-method.html"
class="nav-link flex items-center px-6 py-4 text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors border-l-4 border-transparent">
<i
class="fa-solid fa-credit-card text-gray-500 dark:text-gray-400 w-6 text-center mr-3"></i>
<span class="flex-1">Payment Method</span>
</a>
<a href="../../../index.html"
class="flex items-center px-6 py-4 text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20 transition-colors border-l-4 border-transparent">
<i class="fas fa-sign-out-alt w-6 text-center mr-3"></i>
<span class="flex-1">Sign Out</span>
</a>
</div>
</div>
<!-- Additional Account Info -->
<div
class="mt-4 sm:mt-6 bg-white dark:bg-gray-800 rounded-xl shadow-custom dark:shadow-custom-dark overflow-hidden">
<div class="p-4 sm:p-6">
<h3 class="text-base sm:text-lg font-semibold text-gray-800 dark:text-white mb-3 sm:mb-4">
Account Security</h3>
<div class="space-y-3 sm:space-y-4">
<div class="flex justify-between items-center">
<div>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">
Two-Factor Auth</p>
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Enabled</p>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer" checked>
<div
class="w-9 h-5 sm:w-11 sm:h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-4 after:w-4 sm:after:h-5 sm:after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-500">
</div>
</label>
</div>
<div class="flex justify-between items-center">
<div>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">Email
Notifications</p>
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Enabled</p>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer" checked>
<div
class="w-9 h-5 sm:w-11 sm:h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-4 after:w-4 sm:after:h-5 sm:after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-500">
</div>
</label>
</div>
<div class="flex justify-between items-center">
<div>
<p class="text-sm sm:text-base font-medium text-gray-800 dark:text-white">
Loyalty Status</p>
<p class="text-xs sm:text-sm text-gray-600 dark:text-gray-400">Gold Member</p>
</div>
<div
class="w-6 h-6 sm:w-8 sm:h-8 rounded-full bg-yellow-400 flex items-center justify-center">
<i class="fas fa-crown text-white text-xs sm:text-sm"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Profile Overview Content -->
<div class="lg:w-3/4">
<div
class="bg-white dark:bg-gray-800 rounded-xl shadow-custom dark:shadow-custom-dark overflow-hidden">
<div class="p-6 border-b border-gray-200 dark:border-gray-700">
<h2 class="text-2xl font-bold text-gray-800 dark:text-white">Profile Overview</h2>
<p class="text-gray-600 dark:text-gray-400 mt-1">Manage your personal and payment
information</p>
</div>
<div class="p-6">
<div class="space-y-8">
<!-- Basic Information Section -->
<div>
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold text-gray-800 dark:text-white">Basic
Information</h3>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-pen fa-xs"></i> Edit All
</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Full Name</p>
<p class="font-medium text-gray-800 dark:text-white mt-1">Puth Sovannary
</p>
</div>
<button class="text-gray-500 hover:text-primary p-1">
<i class="fas fa-pen fa-xs"></i>
</button>
</div>
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Email Address</p>
<p class="font-medium text-gray-800 dark:text-white mt-1">
sovannary.puth121@example.com/p>
</div>
<button class="text-gray-500 hover:text-primary p-1">
<i class="fas fa-pen fa-xs"></i>
</button>
</div>
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Phone Number</p>
<p class="font-medium text-gray-800 dark:text-white mt-1"> (855)
123-4567</p>
</div>
<button class="text-gray-500 hover:text-primary p-1">
<i class="fas fa-pen fa-xs"></i>
</button>
</div>
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Date of Birth</p>
<p class="font-medium text-gray-800 dark:text-white mt-1">January 15,
2000</p>
</div>
<button class="text-gray-500 hover:text-primary p-1">
<i class="fas fa-pen fa-xs"></i>
</button>
</div>
</div>
</div>
<!-- Account Details Section -->
<div>
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold text-gray-800 dark:text-white">Account Details
</h3>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-pen fa-xs"></i> Edit All
</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Username</p>
<p class="font-medium text-gray-800 dark:text-white mt-1">Puth_Sovannary
</p>
</div>
<button class="text-gray-500 hover:text-primary p-1">
<i class="fas fa-pen fa-xs"></i>
</button>
</div>
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Member Since</p>
<p class="font-medium text-gray-800 dark:text-white mt-1">June 12, 2022
</p>
</div>
</div>
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Loyalty Points</p>
<p class="font-medium text-gray-800 dark:text-white mt-1">1,240 pts</p>
</div>
</div>
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="text-sm text-gray-500 dark:text-gray-400">Membership Tier</p>
<p class="font-medium text-gray-800 dark:text-white mt-1">Gold Member
</p>
</div>
</div>
</div>
</div>
<!-- Security Section -->
<div>
<h3 class="text-lg font-semibold text-gray-800 dark:text-white mb-4">Security</h3>
<div class="space-y-4">
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="font-medium text-gray-800 dark:text-white">Password</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Last changed 3
months ago</p>
</div>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-pen fa-xs"></i> Change
</button>
</div>
<div
class="p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg flex justify-between items-center">
<div>
<p class="font-medium text-gray-800 dark:text-white">Two-Factor
Authentication</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Enabled (SMS
verification)</p>
</div>
<button
class="text-primary hover:text-blue-700 text-sm font-medium flex items-center gap-1">
<i class="fas fa-pen fa-xs"></i> Manage
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</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 dark:text-white"
style="font-family: 'Caveat', cursive; font-size: 30px;">
Lσʋҽ <span class="text-pink-500">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>