-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathTEST.HTML
980 lines (949 loc) · 40.2 KB
/
TEST.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
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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
<!DOCTYPE html>
<html lang="vi" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vườn Mai Chín Tèo - Cây Cảnh Nghệ Thuật</title>
<meta
name="description"
content="Khám phá và mua sắm các loại cây mai, bonsai và cây cảnh nghệ thuật tại Vườn Mai Chín Tèo. Chúng tôi cung cấp cây cảnh chất lượng cao và dịch vụ chăm sóc chuyên nghiệp."
/>
<script src="https://cdn.tailwindcss.com"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: "#2C5F2D",
secondary: "#97BC62",
accent: "#FED766",
light: "#F9F7F3",
dark: "#1A1A1A"
},
fontFamily: {
sans: ["Roboto", "sans-serif"],
serif: ["Merriweather", "serif"]
}
}
}
};
</script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Merriweather:wght@300;400;700&display=swap");
.bg-pattern {
background-color: #f9f7f3;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d1d5db' fill-opacity='0.15'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
</head>
<body class="font-sans text-dark bg-light">
<header class="bg-white shadow-md fixed w-full z-50 transition-all duration-300" id="header">
<div class="container mx-auto px-4 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<img
src="https://placekitten.com/100/100"
alt="Logo Vườn Mai Chín Tèo"
class="w-10 h-10 md:w-12 md:h-12 rounded-full object-cover border-2 border-secondary"
/>
<h1 class="text-xl md:text-2xl font-serif font-bold text-primary">
Vườn Mai Chín Tèo
</h1>
</div>
<nav class="hidden lg:flex space-x-6">
<a
href="#home"
class="text-dark hover:text-primary transition-colors duration-200"
>Trang chủ</a
>
<a
href="#products"
class="text-dark hover:text-primary transition-colors duration-200"
>Sản phẩm</a
>
<a
href="#care"
class="text-dark hover:text-primary transition-colors duration-200"
>Chăm sóc cây</a
>
<a
href="#about"
class="text-dark hover:text-primary transition-colors duration-200"
>Về chúng tôi</a
>
<a
href="#contact"
class="text-dark hover:text-primary transition-colors duration-200"
>Liên hệ</a
>
</nav>
<div class="flex items-center space-x-4">
<div class="relative hidden md:block">
<input
type="text"
placeholder="Tìm kiếm..."
class="pl-8 pr-4 py-2 border border-gray-300 rounded-full focus:outline-none focus:border-primary text-sm"
/>
<i
class="fas fa-search absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 text-sm"
></i>
</div>
<a
href="#cart"
class="text-dark hover:text-primary transition-colors duration-200 relative"
>
<i class="fas fa-shopping-cart text-xl"></i>
<span class="absolute -top-2 -right-2 bg-accent text-primary rounded-full w-5 h-5 flex items-center justify-center text-xs font-bold">3</span>
</a>
<button
class="lg:hidden text-2xl text-primary focus:outline-none"
id="menu-toggle"
>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<div class="lg:hidden hidden bg-white p-4 shadow-inner" id="mobile-menu">
<a href="#home" class="block py-2 text-dark hover:text-primary"
>Trang chủ</a
>
<a href="#products" class="block py-2 text-dark hover:text-primary"
>Sản phẩm</a
>
<a href="#care" class="block py-2 text-dark hover:text-primary"
>Chăm sóc cây</a
>
<a href="#about" class="block py-2 text-dark hover:text-primary"
>Về chúng tôi</a
>
<a href="#contact" class="block py-2 text-dark hover:text-primary"
>Liên hệ</a
>
</div>
</header>
<main class="pt-20">
<section id="home" class="bg-pattern min-h-screen flex items-center py-12">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-8 lg:mb-0">
<h2
class="text-3xl md:text-4xl lg:text-5xl font-serif font-bold text-primary mb-6"
>
Khám Phá Vẻ Đẹp Cây Cảnh Nghệ Thuật
</h2>
<p class="text-lg md:text-xl text-gray-700 mb-8">
Tại Vườn Mai Chín Tèo, chúng tôi mang đến cho bạn những cây cảnh
độc đáo và tinh tế nhất, được chăm sóc bởi các nghệ nhân hàng
đầu.
</p>
<a
href="#products"
class="bg-primary text-white px-6 py-3 rounded-full text-lg font-semibold hover:bg-opacity-90 transition-all duration-300 inline-block"
>Khám phá bộ sưu tập</a
>
</div>
<div class="lg:w-1/2 mt-8 lg:mt-0">
<img
src="https://placekitten.com/800/600"
alt="Cây cảnh nghệ thuật"
class="rounded-lg shadow-2xl w-full h-auto"
/>
</div>
</div>
</div>
</section>
<section id="featured" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-2xl md:text-3xl lg:text-4xl font-serif font-bold text-center text-primary mb-12">
Sản Phẩm Nổi Bật
</h2>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="bg-light rounded-lg shadow-md">
<img src="https://placekitten.com/300/200" alt="Mai vàng đặc biệt" class="w-full h-40 object-cover rounded-t-lg">
<div class="p-4">
<h3 class="text-lg font-semibold text-primary mb-2">Mai vàng đặc biệt</h3>
<p class="text-gray-600 text-sm mb-4">Hoa 5 cánh, thân uốn nghệ thuật</p>
<span class="text-xl font-bold text-primary">3,500,000₫</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="bg-light rounded-lg shadow-md">
<img src="https://placekitten.com/301/200" alt="Bonsai tùng la hán" class="w-full h-40 object-cover rounded-t-lg">
<div class="p-4">
<h3 class="text-lg font-semibold text-primary mb-2">Bonsai tùng la hán</h3>
<p class="text-gray-600 text-sm mb-4">Tác phẩm nghệ thuật sống động</p>
<span class="text-xl font-bold text-primary">5,200,000₫</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="bg-light rounded-lg shadow-md">
<img src="https://placekitten.com/302/200" alt="Cây kim tiền" class="w-full h-40 object-cover rounded-t-lg">
<div class="p-4">
<h3 class="text-lg font-semibold text-primary mb-2">Cây kim tiền</h3>
<p class="text-gray-600 text-sm mb-4">Mang lại may mắn, tài lộc</p>
<span class="text-xl font-bold text-primary">850,000₫</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="bg-light rounded-lg shadow-md">
<img src="https://placekitten.com/303/200" alt="Cây trầu bà" class="w-full h-40 object-cover rounded-t-lg">
<div class="p-4">
<h3 class="text-lg font-semibold text-primary mb-2">Cây trầu bà</h3>
<p class="text-gray-600 text-sm mb-4">Thanh lọc không khí hiệu quả</p>
<span class="text-xl font-bold text-primary">420,000₫</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="bg-light rounded-lg shadow-md">
<img src="https://placekitten.com/304/200" alt="Cây lưỡi hổ" class="w-full h-40 object-cover rounded-t-lg">
<div class="p-4">
<h3 class="text-lg font-semibold text-primary mb-2">Cây lưỡi hổ</h3>
<p class="text-gray-600 text-sm mb-4">Dễ chăm sóc, phù hợp văn phòng</p>
<span class="text-xl font-bold text-primary">280,000₫</span>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
</section>
<section id="products" class="py-16 bg-pattern">
<div class="container mx-auto px-4">
<h2
class="text-2xl md:text-3xl lg:text-4xl font-serif font-bold text-center text-primary mb-12"
>
Bộ Sưu Tập Cây Cảnh
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div
class="bg-white rounded-lg overflow-hidden shadow-lg transition-transform duration-300 hover:-translate-y-2"
>
<img
src="https://placekitten.com/600/400"
alt="Mai vàng Hoàng Gia"
class="w-full h-48 md:h-64 object-cover"
/>
<div class="p-6">
<h3 class="text-xl font-serif font-semibold text-primary mb-2">
Mai vàng Hoàng Gia
</h3>
<p class="text-gray-600 mb-4">
Cây mai độc đáo với hoa 5 cánh, thân sù sì đẹp mắt.
</p>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-primary"
>2,500,000₫</span
>
<button
class="bg-secondary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition-all duration-200 add-to-cart"
data-id="1"
data-name="Mai vàng Hoàng Gia"
data-price="2500000"
>
Thêm vào giỏ
</button>
</div>
</div>
</div>
<div
class="bg-white rounded-lg overflow-hidden shadow-lg transition-transform duration-300 hover:-translate-y-2"
>
<img
src="https://placekitten.com/601/400"
alt="Bonsai Tùng La Hán"
class="w-full h-48 md:h-64 object-cover"
/>
<div class="p-6">
<h3 class="text-xl font-serif font-semibold text-primary mb-2">
Bonsai Tùng La Hán
</h3>
<p class="text-gray-600 mb-4">
Cây bonsai nghệ thuật, tạo hình độc đáo và tinh tế.
</p>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-primary"
>3,800,000₫</span
>
<button
class="bg-secondary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition-all duration-200 add-to-cart"
data-id="2"
data-name="Bonsai Tùng La Hán"
data-price="3800000"
>
Thêm vào giỏ
</button>
</div>
</div>
</div>
<div
class="bg-white rounded-lg overflow-hidden shadow-lg transition-transform duration-300 hover:-translate-y-2"
>
<img
src="https://placekitten.com/602/400"
alt="Cây Phát Tài"
class="w-full h-48 md:h-64 object-cover"
/>
<div class="p-6">
<h3 class="text-xl font-serif font-semibold text-primary mb-2">
Cây Phát Tài
</h3>
<p class="text-gray-600 mb-4">
Cây cảnh phong thủy, mang lại may mắn và tài lộc.
</p>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-primary"
>1,200,000₫</span
>
<button
class="bg-secondary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition-all duration-200 add-to-cart"
data-id="3"
data-name="Cây Phát Tài"
data-price="1200000"
>
Thêm vào giỏ
</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a
href="#"
class="bg-primary text-white px-8 py-4 rounded-full text-lg font-semibold hover:bg-opacity-90 transition-all duration-300 inline-block"
>Xem tất cả sản phẩm</a
>
</div>
</div>
</section>
<section id="care" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2
class="text-3xl lg:text-4xl font-serif font-bold text-center text-primary mb-12"
>
Hướng Dẫn Chăm Sóc Cây
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-light p-6 rounded-lg shadow-md">
<i class="fas fa-tint text-4xl text-secondary mb-4"></i>
<h3 class="text-xl font-semibold text-primary mb-2">Tưới nước</h3>
<p class="text-gray-600">
Tưới nước đều đặn, giữ đất ẩm nhưng không ướt. Tần suất tưới phụ
thuộc vào loại cây và điều kiện môi trường.
</p>
</div>
<div class="bg-light p-6 rounded-lg shadow-md">
<i class="fas fa-sun text-4xl text-secondary mb-4"></i>
<h3 class="text-xl font-semibold text-primary mb-2">Ánh sáng</h3>
<p class="text-gray-600">
Đặt cây ở nơi có đủ ánh sáng, tránh ánh nắng trực tiếp quá mạnh.
Một số loại cây cần nhiều ánh sáng hơn.
</p>
</div>
<div class="bg-light p-6 rounded-lg shadow-md">
<i class="fas fa-cut text-4xl text-secondary mb-4"></i>
<h3 class="text-xl font-semibold text-primary mb-2">Cắt tỉa</h3>
<p class="text-gray-600">
Cắt tỉa định kỳ để giữ hình dáng và kích thích sự phát triển của
cây. Loại bỏ lá và cành khô, úa.
</p>
</div>
</div>
<div class="text-center mt-12">
<a
href="#"
class="text-primary hover:text-secondary transition-colors duration-200 font-semibold"
>Xem thêm hướng dẫn chăm sóc</a
>
</div>
</div>
</section>
<section id="about" class="py-16 bg-pattern">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center justify-between">
<div class="lg:w-1/2 mb-8 lg:mb-0">
<img
src="https://placekitten.com/700/500"
alt="Vườn Mai Chín Tèo"
class="rounded-lg shadow-2xl"
/>
</div>
<div class="lg:w-1/2 lg:pl-12">
<h2
class="text-3xl lg:text-4xl font-serif font-bold text-primary mb-6"
>
Về Vườn Mai Chín Tèo
</h2>
<p class="text-gray-600 mb-6">
Vườn Mai Chín Tèo, với hơn 30 năm kinh nghiệm, là nơi hội tụ của
nghệ thuật và tâm huyết trong việc chăm sóc và phát triển cây
cảnh. Chúng tôi tự hào mang đến những tác phẩm nghệ thuật sống,
kết tinh từ sự tỉ mỉ và đam mê của đội ngũ nghệ nhân hàng đầu.
</p>
<ul class="list-disc list-inside text-gray-600 mb-8 space-y-2">
<li>Cung cấp cây cảnh chất lượng cao, được chứng nhận</li>
<li>Dịch vụ tư vấn chuyên sâu về nghệ thuật bonsai</li>
<li>Chăm sóc và bảo dưỡng cây trọn đời</li>
<li>Nghiên cứu và phát triển giống cây độc quyền</li>
</ul>
<a
href="#"
class="bg-secondary text-white px-8 py-4 rounded-full text-lg font-semibold hover:bg-opacity-90 transition-all duration-300 inline-block"
>Tìm hiểu thêm về chúng tôi</a
>
</div>
</div>
</div>
</section>
<section id="testimonials" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2
class="text-3xl lg:text-4xl font-serif font-bold text-center text-primary mb-12"
>
Khách Hàng Nói Gì Về Chúng Tôi
</h2>
<div class="swiper-container testimonial-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="bg-light p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<img
src="https://placekitten.com/100/100"
alt="Khách hàng"
class="w-12 h-12 rounded-full mr-4"
/>
<div>
<h4 class="font-semibold">Nguyễn Văn A</h4>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">
"Cây mai tôi mua từ Vườn Mai Chín Tèo không chỉ đẹp mà còn rất
khỏe mạnh. Dịch vụ chăm sóc tận tình, chuyên nghiệp."
</p>
</div>
</div>
<div class="swiper-slide">
<div class="bg-light p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<img
src="https://placekitten.com/101/101"
alt="Khách hàng"
class="w-12 h-12 rounded-full mr-4"
/>
<div>
<h4 class="font-semibold">Trần Thị B</h4>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-600">
"Đội ngũ chuyên gia tại đây thực sự am hiểu về cây cảnh. Họ đã
giúp tôi chọn được cây phù hợp nhất cho không gian sống của
mình."
</p>
</div>
</div>
<div class="swiper-slide">
<div class="bg-light p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<img
src="https://placekitten.com/102/102"
alt="Khách hàng"
class="w-12 h-12 rounded-full mr-4"
/>
<div>
<h4 class="font-semibold">Lê Văn C</h4>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">
"Chất lượng cây cảnh tại đây vượt xa mong đợi của tôi. Sự tận
tâm trong việc chăm sóc và tư vấn khiến tôi trở thành khách hàng
trung thành."
</p>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<section id="faq" class="py-16 bg-pattern">
<div class="container mx-auto px-4">
<h2 class="text-3xl lg:text-4xl font-serif font-bold text-center text-primary mb-12">
Câu Hỏi Thường Gặp
</h2>
<div class="max-w-3xl mx-auto">
<div class="space-y-4">
<div class="bg-white rounded-lg shadow-md">
<button class="flex justify-between items-center w-full px-4 py-3 text-left focus:outline-none">
<span class="font-semibold">Làm thế nào để chọn cây cảnh phù hợp cho không gian của tôi?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="px-4 py-3 text-gray-600 hidden">
Để chọn cây cảnh phù hợp, bạn nên xem xét các yếu tố như kích thước không gian, điều kiện ánh sáng, độ ẩm, và phong cách trang trí. Chúng tôi luôn sẵn sàng tư vấn để giúp bạn lựa chọn cây cảnh phù hợp nhất.
</div>
</div>
<div class="bg-white rounded-lg shadow-md">
<button class="flex justify-between items-center w-full px-4 py-3 text-left focus:outline-none">
<span class="font-semibold">Vườn Mai Chín Tèo có dịch vụ giao hàng không?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="px-4 py-3 text-gray-600 hidden">
Có, chúng tôi cung cấp dịch vụ giao hàng tận nơi. Đối với các đơn hàng trong nội thành, chúng tôi thường giao hàng trong vòng 24-48 giờ. Với các đơn hàng ngoại thành hoặc liên tỉnh, thời gian giao hàng có thể từ 3-5 ngày làm việc.
</div>
</div>
<div class="bg-white rounded-lg shadow-md">
<button class="flex justify-between items-center w-full px-4 py-3 text-left focus:outline-none">
<span class="font-semibold">Làm thế nào để chăm sóc cây bonsai?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="px-4 py-3 text-gray-600 hidden">
Chăm sóc cây bonsai đòi hỏi sự kiên nhẫn và kỹ thuật. Các bước cơ bản bao gồm tưới nước đều đặn, cắt tỉa định kỳ, bón phân và tạo hình. Chúng tôi cung cấp hướng dẫn chi tiết kèm theo mỗi cây bonsai và luôn sẵn sàng tư vấn thêm nếu bạn cần.
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2
class="text-3xl lg:text-4xl font-serif font-bold text-center text-primary mb-12"
>
Liên Hệ Với Chúng Tôi
</h2>
<div class="flex flex-col lg:flex-row justify-between items-start">
<div class="lg:w-1/2 mb-8 lg:mb-0">
<h3 class="text-2xl font-serif font-semibold text-primary mb-4">
Thông tin liên hệ
</h3>
<p class="mb-2 flex items-center">
<i class="fas fa-map-marker-alt text-secondary mr-2"></i> 123
Đường Mai Vàng, Phường Hoa Xuân, TP. Đà Nẵng
</p>
<p class="mb-2 flex items-center">
<i class="fas fa-phone text-secondary mr-2"></i> 0123 456 789
</p>
<p class="mb-4 flex items-center">
<i class="fas fa-envelope text-secondary mr-2"></i>
</p>
<h4 class="text-xl font-semibold text-primary mb-2">
Giờ làm việc
</h4>
<p class="mb-1">Thứ 2 - Thứ 6: 8:00 - 17:00</p>
<p class="mb-4">Thứ 7 - Chủ nhật: 9:00 - 16:00</p>
<h4 class="text-xl font-semibold text-primary mb-2">
Kết nối với chúng tôi
</h4>
<div class="flex space-x-4">
<a
href="#"
class="text-secondary hover:text-primary transition-colors duration-200"
><i class="fab fa-facebook-f"></i
></a>
<a
href="#"
class="text-secondary hover:text-primary transition-colors duration-200"
><i class="fab fa-instagram"></i
></a>
<a
href="#"
class="text-secondary hover:text-primary transition-colors duration-200"
><i class="fab fa-youtube"></i
></a>
</div>
</div>
<div class="lg:w-1/2">
<form class="bg-white p-8 rounded-lg shadow-md">
<div class="mb-4">
<label
for="name"
class="block text-gray-700 font-semibold mb-2"
>Họ và tên</label
>
<input
type="text"
id="name"
name="name"
class="w-full px-4 py-2 rounded-md border border-gray-300 focus:border-primary focus:ring focus:ring-primary focus:ring-opacity-50"
required
/>
</div>
<div class="mb-4">
<label
for="email"
class="block text-gray-700 font-semibold mb-2"
>Email</label
>
<input
type="email"
id="email"
name="email"
class="w-full px-4 py-2 rounded-md border border-gray-300 focus:border-primary focus:ring focus:ring-primary focus:ring-opacity-50"
required
/>
</div>
<div class="mb-4">
<label
for="message"
class="block text-gray-700 font-semibold mb-2"
>Tin nhắn</label
>
<textarea
id="message"
name="message"
rows="4"
class="w-full px-4 py-2 rounded-md border border-gray-300 focus:border-primary focus:ring focus:ring-primary focus:ring-opacity-50"
required
></textarea>
</div>
<button
type="submit"
class="w-full bg-primary text-white px-6 py-3 rounded-full font-semibold hover:bg-opacity-90 transition-all duration-300"
>
Gửi tin nhắn
</button>
</form>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-primary text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-serif font-semibold mb-4">
Vườn Mai Chín Tèo
</h3>
<p class="text-sm mb-4">
Chuyên cung cấp các loại cây cảnh, bonsai và mai vàng chất lượng
cao, đảm bảo uy tín và chất lượng.
</p>
<div class="flex space-x-4">
<a
href="#"
class="text-white hover:text-accent transition-colors duration-200"
><i class="fab fa-facebook-f"></i
></a>
<a
href="#"
class="text-white hover:text-accent transition-colors duration-200"
><i class="fab fa-instagram"></i
></a>
<a
href="#"
class="text-white hover:text-accent transition-colors duration-200"
><i class="fab fa-youtube"></i
></a>
</div>
</div>
<div>
<h3 class="text-xl font-serif font-semibold mb-4">
Liên kết nhanh
</h3>
<ul class="space-y-2">
<li>
<a
href="#home"
class="hover:text-accent transition-colors duration-200"
>Trang chủ</a
>
</li>
<li>
<a
href="#products"
class="hover:text-accent transition-colors duration-200"
>Sản phẩm</a
>
</li>
<li>
<a
href="#care"
class="hover:text-accent transition-colors duration-200"
>Chăm sóc cây</a
>
</li>
<li>
<a
href="#about"
class="hover:text-accent transition-colors duration-200"
>Về chúng tôi</a
>
</li>
<li>
<a
href="#contact"
class="hover:text-accent transition-colors duration-200"
>Liên hệ</a
>
</li>
</ul>
</div>
<div>
<h3 class="text-xl font-serif font-semibold mb-4">Chính sách</h3>
<ul class="space-y-2">
<li>
<a
href="#"
class="hover:text-accent transition-colors duration-200"
>Chính sách bảo hành</a
>
</li>
<li>
<a
href="#"
class="hover:text-accent transition-colors duration-200"
>Chính sách đổi trả</a
>
</li>
<li>
<a
href="#"
class="hover:text-accent transition-colors duration-200"
>Chính sách vận chuyển</a
>
</li>
<li>
<a
href="#"
class="hover:text-accent transition-colors duration-200"
>Chính sách bảo mật</a
>
</li>
<li>
<a
href="#"
class="hover:text-accent transition-colors duration-200"
>Điều khoản sử dụng</a
>
</li>
</ul>
</div>
<div>
<h3 class="text-xl font-serif font-semibold mb-4">
Đăng ký nhận tin
</h3>
<p class="text-sm mb-4">
Nhận thông tin mới nhất về sản phẩm và khuyến mãi
</p>
<form class="flex">
<input
type="email"
placeholder="Email của bạn"
class="w-full px-4 py-2 rounded-l-full focus:outline-none focus:ring-2 focus:ring-accent text-gray-800"
/>
<button
type="submit"
class="bg-accent text-primary px-4 py-2 rounded-r-full hover:bg-opacity-90 transition-colors duration-200"
>
Đăng ký
</button>
</form>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-700 text-center">
<p class="text-sm">
© 2023 Vườn Mai Chín Tèo. Tất cả quyền được bảo lưu.
</p>
</div>
</div>
</footer>
<div id="cart-modal" class="fixed inset-0 bg-black bg-opacity-50 z-50 hidden">
<div class="bg-white p-8 rounded-lg shadow-xl max-w-md w-full absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2">
<h2 class="text-2xl font-bold mb-4">Giỏ hàng của bạn</h2>
<div id="cart-items" class="mb-4">
<!-- Cart items will be dynamically added here -->
</div>
<div class="flex justify-between items-center font-bold text-lg mb-4">
<span>Tổng cộng:</span>
<span id="cart-total">0₫</span>
</div>
<div class="flex justify-end">
<button id="close-cart" class="bg-gray-300 text-gray-800 px-4 py-2 rounded-full mr-2 hover:bg-gray-400 transition-colors duration-200">Đóng</button>
<button class="bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition-colors duration-200">Thanh toán</button>
</div>
</div>
</div>
<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();
document.querySelector(this.getAttribute("href")).scrollIntoView({
behavior: "smooth"
});
});
});
// Featured products slider
const featuredSwiper = new Swiper('.swiper-container', {
slidesPerView: 1,
spaceBetween: 20,
loop: true,
autoplay: {
delay: 5000,
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
breakpoints: {
640: {
slidesPerView: 2,
},
768: {
slidesPerView: 3,
},
1024: {
slidesPerView: 4,
},
},
});
// Testimonial slider
const testimonialSwiper = new Swiper('.testimonial-slider', {
slidesPerView: 1,
spaceBetween: 20,
loop: true,
autoplay: {
delay: 5000,
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
breakpoints: {
768: {
slidesPerView: 2,
},
1024: {
slidesPerView: 3,
},
},
});
// Header scroll effect
const header = document.getElementById('header');
let lastScrollTop = 0;
window.addEventListener('scroll', () => {
let scrollTop = window.pageYOffset || document.documentElement.scrollTop;
if (scrollTop > lastScrollTop) {
header.style.transform = 'translateY(-100%)';
} else {
header.style.transform = 'translateY(0)';
}
lastScrollTop = scrollTop;
});
// Shopping cart functionality
const cartIcon = document.querySelector('a[href="#cart"]');
const cartModal = document.getElementById('cart-modal');
const closeCart = document.getElementById('close-cart');
const cartItems = document.getElementById('cart-items');
const cartTotal = document.getElementById('cart-total');
const addToCartButtons = document.querySelectorAll('.add-to-cart');
let cart = [];
cartIcon.addEventListener('click', (e) => {
e.preventDefault();
cartModal.classList.remove('hidden');
updateCartDisplay();
});
closeCart.addEventListener('click', () => {
cartModal.classList.add('hidden');
});
addToCartButtons.forEach(button => {
button.addEventListener('click', () => {
const id = button.getAttribute('data-id');
const name = button.getAttribute('data-name');
const price = parseInt(button.getAttribute('data-price'));
const existingItem = cart.find(item => item.id === id);
if (existingItem) {
existingItem.quantity += 1;
} else {
cart.push({ id, name, price, quantity: 1 });
}
updateCartDisplay();
});
});
function updateCartDisplay() {
cartItems.innerHTML = '';
let total = 0;
cart.forEach(item => {
const itemTotal = item.price * item.quantity;
total += itemTotal;
cartItems.innerHTML += `
<div class="flex justify-between items-center mb-2">
<span>${item.name} x ${item.quantity}</span>
<span>${itemTotal.toLocaleString('vi-VN')}₫</span>
</div>
`;
});
cartTotal.textContent = total.toLocaleString('vi-VN') + '₫';
// Update cart icon
const cartCount = document.querySelector('a[href="#cart"] span');
const itemCount = cart.reduce((sum, item) => sum + item.quantity, 0);
cartCount.textContent = itemCount;
}
// FAQ accordion
const faqButtons = document.querySelectorAll('#faq button');
faqButtons.forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
content.classList.toggle('hidden');
const icon = button.querySelector('i');
icon.classList.toggle('fa-chevron-down');
icon.classList.toggle('fa-chevron-up');
});
});
</script>
</body>
</html>