@@ -31,78 +31,78 @@ const Footer = () => {
31
31
} , [ ] ) ;
32
32
33
33
return (
34
- < footer className = "bg-gray-800 text-white p-20 " >
34
+ < footer className = "bg-gray-800 text-white p-14 " >
35
35
< div className = "flex flex-col md:flex-row justify-between text-center md:text-left mt-4" >
36
36
< div className = "mb-8 md:mb-0" >
37
- < h3 className = "text-2xl md:text-4xl font-semibold mb-6 " > Services</ h3 >
37
+ < h3 className = "text-xl md:text-2xl font-semibold mb-4 " > Services</ h3 >
38
38
< ul >
39
- < li className = "mb-4 text-lg md:text-2xl " > OPD Consultations</ li >
40
- < li className = "mb-4 text-lg md:text-2xl " > Lab Tests</ li >
41
- < li className = "mb-4 text-lg md:text-2xl " > Health Checkup</ li >
39
+ < li className = "mb-3 text-base md:text-lg " > OPD Consultations</ li >
40
+ < li className = "mb-3 text-base md:text-lg " > Lab Tests</ li >
41
+ < li className = "mb-3 text-base md:text-lg " > Health Checkup</ li >
42
42
</ ul >
43
43
</ div >
44
44
45
45
< div className = "mb-8 md:mb-0" >
46
- < h3 className = "text-2xl md:text-4xl font-semibold mb-6 " > About</ h3 >
46
+ < h3 className = "text-xl md:text-2xl font-semibold mb-4 " > About</ h3 >
47
47
< ul >
48
- < li className = "mb-4 text-lg md:text-2xl " > Our Hospital</ li >
49
- < li className = "mb-4 text-lg md:text-2xl " > Doctors</ li >
50
- < li className = "mb-4 text-lg md:text-2xl " > Pricing</ li >
51
- < li className = "mb-4 text-lg md:text-2xl " > Terms</ li >
48
+ < li className = "mb-3 text-base md:text-lg " > Our Hospital</ li >
49
+ < li className = "mb-3 text-base md:text-lg " > Doctors</ li >
50
+ < li className = "mb-3 text-base md:text-lg " > Pricing</ li >
51
+ < li className = "mb-3 text-base md:text-lg " > Terms</ li >
52
52
</ ul >
53
53
</ div >
54
54
55
55
< div className = "mb-8 md:mb-0" >
56
- < h3 className = "text-2xl md:text-4xl font-semibold mb-6 " > Contact Us</ h3 >
56
+ < h3 className = "text-xl md:text-2xl font-semibold mb-4 " > Contact Us</ h3 >
57
57
< ul >
58
- < li className = "mb-4 text-lg md:text-2xl " > Business</ li >
59
- < li className = "mb-4 text-lg md:text-2xl " > Customer Care</ li >
60
- < li className = "mb-4 text-lg md:text-2xl " > Join Us</ li >
61
- < li className = "mb-4 text-lg md:text-2xl " > Support Us</ li >
58
+ < li className = "mb-3 text-base md:text-lg " > Business</ li >
59
+ < li className = "mb-3 text-base md:text-lg " > Customer Care</ li >
60
+ < li className = "mb-3 text-base md:text-lg " > Join Us</ li >
61
+ < li className = "mb-3 text-base md:text-lg " > Support Us</ li >
62
62
</ ul >
63
63
</ div >
64
64
65
65
< div className = "mb-8 md:mb-0" >
66
- < h3 className = "text-2xl md:text-4xl font-semibold mb-6 " > Follow us on</ h3 >
67
- < ul className = "flex justify-center space-x-8 md:space-x-10 " >
66
+ < h3 className = "text-xl md:text-2xl font-semibold mb-4 " > Follow us on</ h3 >
67
+ < ul className = "flex justify-center space-x-6 md:space-x-8 " >
68
68
< li >
69
69
< a href = "https://www.instagram.com" target = "_blank" rel = "noopener noreferrer" >
70
- < img src = { instagram } alt = "Instagram" className = "w-12 md:w-16 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" /> { /* White icon */ }
70
+ < img src = { instagram } alt = "Instagram" className = "w-8 md:w-10 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" />
71
71
</ a >
72
72
</ li >
73
73
< li >
74
74
< a href = "https://www.facebook.com" target = "_blank" rel = "noopener noreferrer" >
75
- < img src = { facebook } alt = "Facebook" className = "w-12 md:w-16 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" /> { /* White icon */ }
75
+ < img src = { facebook } alt = "Facebook" className = "w-8 md:w-10 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" />
76
76
</ a >
77
77
</ li >
78
78
< li >
79
79
< a href = "https://www.twitter.com" target = "_blank" rel = "noopener noreferrer" >
80
- < img src = { twitter } alt = "Twitter" className = "w-12 md:w-16 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" /> { /* White icon */ }
80
+ < img src = { twitter } alt = "Twitter" className = "w-8 md:w-10 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" />
81
81
</ a >
82
82
</ li >
83
83
< li >
84
84
< a href = "https://www.linkedin.com" target = "_blank" rel = "noopener noreferrer" >
85
- < img src = { linkedin } alt = "LinkedIn" className = "w-12 md:w-16 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" /> { /* White icon */ }
85
+ < img src = { linkedin } alt = "LinkedIn" className = "w-8 md:w-10 filter brightness-0 invert hover:opacity-75 transition-opacity duration-200" />
86
86
</ a >
87
87
</ li >
88
88
</ ul >
89
89
</ div >
90
90
</ div >
91
91
92
92
< div className = "text-center mt-8" >
93
- < p className = "font-bold text-xl md:text-3xl " > DISCLAIMER</ p >
94
- < p className = "text-gray-300 text-base md:text-xl mt-2" >
93
+ < p className = "font-bold text-lg md:text-xl " > DISCLAIMER</ p >
94
+ < p className = "text-gray-300 text-sm md:text-base mt-2" >
95
95
“The information provided on Med-Space is intended for general informational purposes only and should not be considered as medical advice, diagnosis, or treatment. Always seek the advice of a qualified healthcare provider for any medical condition or treatment. Med-Space facilitates OPD appointment booking and hospital data sharing, but it does not endorse or guarantee the quality of services provided by healthcare providers.”
96
96
</ p >
97
97
</ div >
98
98
99
- < div className = "text-center mt-4 text-gray-400 text-sm md:text-lg " >
99
+ < div className = "text-center mt-4 text-gray-400 text-xs md:text-sm " >
100
100
< p > Medi connect ©2024</ p >
101
101
</ div >
102
102
103
103
{ showScrollTop && (
104
- < button onClick = { scrollToTop } className = "fixed bottom-6 right-6 bg-blue-600 hover:bg-blue-500 text-white p-4 md:p-5 rounded-full" >
105
- < FaArrowUp size = { 28 } />
104
+ < button onClick = { scrollToTop } className = "fixed bottom-6 right-6 bg-blue-600 hover:bg-blue-500 text-white p-3 md:p-4 rounded-full" >
105
+ < FaArrowUp size = { 24 } />
106
106
</ button >
107
107
) }
108
108
</ footer >
0 commit comments