@@ -118,6 +118,18 @@ const FooterComponent = () => {
118118 } ,
119119 ] ;
120120
121+ const socialIconWrapperClass = isLightTheme
122+ ? 'w-9 h-9 p-2 rounded-xl flex items-center justify-center cursor-pointer bg-transparent border-none'
123+ : 'w-9 h-9 p-2 rounded-xl flex items-center justify-center cursor-pointer bbFooterSocialIcon' ;
124+
125+ const socialIconWrapperWideClass = isLightTheme
126+ ? 'w-10 h-10 p-2 rounded-xl flex items-center justify-center cursor-pointer bg-transparent border-none'
127+ : 'w-10 h-10 p-2 rounded-xl flex items-center justify-center cursor-pointer bbFooterSocialIcon' ;
128+
129+ const socialIconClass = isLightTheme
130+ ? 'text-[#6b7280] hover:text-[#10b981]'
131+ : 'text-white/60 hover:text-white' ;
132+
121133 // const PartnershipMenu = [
122134 // { label: "For agencies", url: "/" },
123135 // { label: "For enterprise", url: "/" },
@@ -269,50 +281,50 @@ const FooterComponent = () => {
269281 priority
270282 />
271283 </ Link >
272- < div className = "flex mt-1 lg:mt-5" >
284+ < div className = "flex mt-1 lg:mt-5 gap-3 " >
273285 < Link
274286 href = "https://www.linkedin.com/company/betterbugs/"
275287 target = "_blank"
276288 aria-label = "LinkedIn"
277289 >
278- < div className = "w-9 h-9 p-2 rounded-xl flex items-center justify-center cursor-pointer bbFooterSocialIcon" >
279- < LinkedinIcon className = "text-white/60 hover:text-white" />
290+ < div className = { socialIconWrapperClass } >
291+ < LinkedinIcon className = { socialIconClass } />
280292 </ div >
281293 </ Link >
282294 < Link
283295 href = "https://twitter.com/BetterBugs"
284296 target = "_blank"
285297 aria-label = "Twitter"
286298 >
287- < div className = "w-9 h-9 p-2 rounded-xl flex items-center justify-center cursor-pointer bbFooterSocialIcon" >
288- < TwitterIcon className = "text-white/60 hover:text-white" />
299+ < div className = { socialIconWrapperClass } >
300+ < TwitterIcon className = { socialIconClass } />
289301 </ div >
290302 </ Link >
291303 < Link
292304 href = "https://www.instagram.com/betterbugshq/"
293305 target = "_blank"
294306 aria-label = "Instagram"
295307 >
296- < div className = "w-9 h-9 p-2 rounded-xl flex items-center justify-center cursor-pointer bbFooterSocialIcon" >
297- < InstagramIcon className = "text-white/60 hover:text-white" />
308+ < div className = { socialIconWrapperClass } >
309+ < InstagramIcon className = { socialIconClass } />
298310 </ div >
299311 </ Link >
300312 < Link
301313 href = "https://www.youtube.com/@betterbugshq"
302314 target = "_blank"
303315 aria-label = "LinkedIn"
304316 >
305- < div className = "w-10 h-10 p-2 rounded-xl flex items-center justify-center cursor-pointer bbFooterSocialIcon" >
306- < YouTubeIcon className = "text-white/60 hover:text-white !w-12 !h-12" />
317+ < div className = { socialIconWrapperWideClass } >
318+ < YouTubeIcon className = { ` ${ socialIconClass } !w-12 !h-12` } />
307319 </ div >
308320 </ Link >
309321 < Link
310322 href = "https://discord.com/invite/HF8XjwVtPh"
311323 target = "_blank"
312324 aria-label = "Discord"
313325 >
314- < div className = "w-10 h-10 p-2 rounded-xl flex items-center justify-center cursor-pointer bbFooterSocialIcon" >
315- < DiscordIcon className = "text-white/60 hover:text-white !w-12 !h-12" />
326+ < div className = { socialIconWrapperWideClass } >
327+ < DiscordIcon className = { ` ${ socialIconClass } !w-12 !h-12` } />
316328 </ div >
317329 </ Link >
318330 </ div >
0 commit comments