@@ -32,39 +32,39 @@ const Footer: React.FC = () => {
3232 return (
3333 < footer className = "text-black text-center w-full p-2 mt-10" >
3434 < div className = "bg-footer mx-auto w-11/12 rounded py-1 my-5" />
35- < div className = "grid grid-cols-5 xl:grid-cols-6 grid-rows-4" >
36- < div className = "col-span-6 lg:col-span-5 row-span-5 text-left flex flex-row flex-wrap justify-evenly overflow-x-auto" >
37- { partners . map ( ( partner , key ) => (
38- < Skeleton key = { key } avatar = { true } active = { true } loading = { isPartnerLoading } >
39- { partner . link . trim ( ) === '' ? (
35+ < div className = "flex justify-center flex-wrap gap-2" >
36+ { partners . map ( ( partner , key ) => (
37+ < Skeleton key = { key } avatar = { true } active = { true } loading = { isPartnerLoading } >
38+ { ( partner . link || '' ) . trim ( ) === '' ? (
39+ < AdvancedImage
40+ plugins = { [ lazyload ( { threshold : 0.5 } ) ] }
41+ cldImg = { cloudinary . image ( partner . image ) }
42+ alt = { partner . name }
43+ className = "w-36 h-16 2xl:h-24 object-contain"
44+ />
45+ ) : (
46+ < ExternalLink src = { partner . link || '' } >
4047 < AdvancedImage
4148 plugins = { [ lazyload ( { threshold : 0.5 } ) ] }
4249 cldImg = { cloudinary . image ( partner . image ) }
4350 alt = { partner . name }
44- className = "w-auto h-16 2xl:h-24 object-contain"
51+ className = "w-36 h-16 2xl:h-24 object-contain"
4552 />
46- ) : (
47- < ExternalLink src = { partner . link } >
48- < AdvancedImage
49- plugins = { [ lazyload ( { threshold : 0.5 } ) ] }
50- cldImg = { cloudinary . image ( partner . image ) }
51- alt = { partner . name }
52- className = "w-auto h-16 2xl:h-24 object-contain"
53- />
54- </ ExternalLink >
55- ) }
56- </ Skeleton >
57- ) ) }
58- </ div >
59- < div className = "col-span-6 lg:col-span-1 row-span-4 flex justify-center lg:justify-evenly items-center text-5xl my-2 lg:my-0" >
53+ </ ExternalLink >
54+ ) }
55+ </ Skeleton >
56+ ) ) }
57+ </ div >
58+ < div className = "flex flex-col items-center gap-2 mt-2" >
59+ < div className = "flex justify-center lg:justify-evenly items-center text-5xl gap-2" >
6060 < ExternalLink src = { externalLinks . social . instagram } onClick = { ( ) => trackSocialMediaGA ( 'instagram' ) } >
61- < FaInstagram className = "hover:text-green" title = { ALT_TEXT_SOCIAL_MEDIAS . instagram } />
61+ < FaInstagram className = "text-green hover:text-green/50 " title = { ALT_TEXT_SOCIAL_MEDIAS . instagram } />
6262 </ ExternalLink >
6363 < ExternalLink src = { externalLinks . social . facebook } onClick = { ( ) => trackSocialMediaGA ( 'facebook' ) } >
64- < FaFacebookF className = "hover:text-green" title = { ALT_TEXT_SOCIAL_MEDIAS . facebook } />
64+ < FaFacebookF className = "text-green hover:text-green/50 " title = { ALT_TEXT_SOCIAL_MEDIAS . facebook } />
6565 </ ExternalLink >
6666 </ div >
67- < div className = "col-span-6 row-span-1 italic mt-4" >
67+ < div >
6868 < Link to = { RouterUrl . mention } className = "link" >
6969 { LEGAL_MENTION }
7070 </ Link >
0 commit comments