@@ -85,15 +85,15 @@ function Footer() {
85
85
const year = now . getFullYear ( ) ;
86
86
87
87
return (
88
- < footer className = "bg-secondary text-white" >
89
- < div className = "md:p -12 py-8 px-4 relative max-w-[1440px] mx-auto" >
88
+ < footer className = "bg-secondary text-white" data-testid = "footer-section" >
89
+ < div className = "md:px -12 md:pt-8 md:pb-[2px] py-8 px-4 max-w-[1440px] mx-auto" >
90
90
< div className = "flex lg:flex-row flex-col md:gap-16 gap-8" >
91
91
< div className = "flex-3 flex flex-col items-center" >
92
92
{ /* logo */ }
93
93
< LazyLoadImage
94
94
src = { logo }
95
95
alt = "logo"
96
- className = "w-[124px] h-32 md:ml-0 ml-4 object-contain"
96
+ className = "h-20 md:ml-0 ml-4 object-contain"
97
97
/>
98
98
{ /* socials */ }
99
99
< div className = "flex gap-4 items-center py-4" >
@@ -104,7 +104,7 @@ function Footer() {
104
104
target = "_blank"
105
105
rel = "noopener noreferrer"
106
106
aria-label = { link . label }
107
- className = "w-7 h-7 text-white"
107
+ className = "w-5 h-5 text-white"
108
108
>
109
109
{ link . icon }
110
110
</ a >
@@ -117,7 +117,7 @@ function Footer() {
117
117
href = { link . href }
118
118
target = "_blank"
119
119
rel = "noopener noreferrer"
120
- className = "w-7 h-7 text-white"
120
+ className = "w-5 h-5 text-white"
121
121
>
122
122
{ link . icon }
123
123
</ a >
@@ -126,17 +126,17 @@ function Footer() {
126
126
</ div >
127
127
128
128
{ /* Footer links */ }
129
- < div className = "grid grid-cols-1 sm:grid-cols-3 gap-12 sm: gap-8" >
129
+ < div className = "grid grid-cols-1 sm:grid-cols-3 md: gap-12 gap-8" >
130
130
{ footerLinks . map ( ( section ) => (
131
131
< div
132
132
key = { crypto . randomUUID ( ) }
133
- className = "flex flex-col gap-8 text-center lg:text-left"
133
+ className = "flex flex-col gap-2 md:gap-4 text-center lg:text-left"
134
134
>
135
- < h2 className = "text-green-footer font-bold sm:text-xl text-lg leading-9" >
135
+ < h2 className = "text-green-footer font-bold sm:text-xl text-lg md: leading-9" >
136
136
{ section . title }
137
137
</ h2 >
138
138
139
- < ul className = "flex flex-col gap-5 list-none text-sm font-light" >
139
+ < ul className = "flex flex-col gap-3 md:gap- 5 list-none text-sm font-light" >
140
140
{ section . links . map ( ( link ) =>
141
141
link . href ? (
142
142
< li key = { crypto . randomUUID ( ) } >
@@ -162,7 +162,7 @@ function Footer() {
162
162
163
163
{ /* Newsletter */ }
164
164
< div className = "flex-2" >
165
- < div className = "flex flex-col md:gap-8 " >
165
+ < div className = "flex flex-col gap-2 md:gap-4 " >
166
166
< h2 className = "text-green-footer font-bold sm:text-xl text-lg md:leading-9 mx-auto lg:mx-0 text-center lg:text-left" >
167
167
Subscribe to our Newsletter
168
168
</ h2 >
@@ -192,8 +192,8 @@ function Footer() {
192
192
</ div >
193
193
</ div >
194
194
</ div >
195
- < div className = "sm:mt-14 mt-10" >
196
- < h1 className = "text-center text-green-footer my-4 md:my-8 " >
195
+ < div >
196
+ < h1 className = "text-center text-green-footer my-4 " >
197
197
© { year } SpaceYaTech | All Rights Reserved
198
198
</ h1 >
199
199
</ div >
0 commit comments