Skip to content

Commit 32b2e8f

Browse files
committed
Give unoptimized tag to footer icons
1 parent 313a91f commit 32b2e8f

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

components/layout/Footer.tsx

+10-7
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Footer = () => {
1919
}, [])
2020

2121
return (
22-
<footer className='bg-secondary '>
22+
<footer className='bg-secondary'>
2323
<div className='mx-auto max-w-5xl px-4 py-8 pb-6 sm:px-0'>
2424
<div className='grid grid-cols-1 px-4 sm:grid-cols-2 lg:px-0'>
2525
<div>
@@ -37,6 +37,7 @@ const Footer = () => {
3737
title='created with NextJS'
3838
width={62}
3939
height={62}
40+
unoptimized
4041
/>
4142
</a>
4243
<a
@@ -52,6 +53,7 @@ const Footer = () => {
5253
title='deployed with Vercel'
5354
width={62}
5455
height={62}
56+
unoptimized
5557
/>
5658
</a>
5759
<a
@@ -67,6 +69,7 @@ const Footer = () => {
6769
title='Data stored with MongoDB'
6870
width={62}
6971
height={62}
72+
unoptimized
7073
/>
7174
</a>
7275
<a
@@ -90,12 +93,12 @@ const Footer = () => {
9093

9194
<div className='mt-5 grid grid-cols-2 gap-2 sm:grid-cols-2 md:mt-0'>
9295
<div className='text-center sm:text-end'>
93-
<p className='text-lg font-bold '>Information</p>
96+
<p className='text-lg font-bold'>Information</p>
9497

9598
<ul className='mt-4 space-y-4 text-sm [&>li>a]:transition-all'>
9699
<li>
97100
<Link
98-
className='hover:/75 text-sm font-medium transition hover:text-gray-300'
101+
className='hover:/75 text-sm font-medium transition hover:text-gray-300'
99102
href='https://github.com/nikohoffren/fork-commit-merge/blob/main/CONTRIBUTING.md'
100103
target='_blank'
101104
rel='noopener noreferrer'
@@ -106,7 +109,7 @@ const Footer = () => {
106109

107110
<li>
108111
<Link
109-
className='hover:/75 text-sm font-medium transition hover:text-gray-300'
112+
className='hover:/75 text-sm font-medium transition hover:text-gray-300'
110113
href='/privacy-policy'
111114
>
112115
Privacy Policy
@@ -115,7 +118,7 @@ const Footer = () => {
115118

116119
<li>
117120
<Link
118-
className='hover:/75 text-sm font-medium transition hover:text-gray-300'
121+
className='hover:/75 text-sm font-medium transition hover:text-gray-300'
119122
href='https://github.com/nikohoffren'
120123
target='_blank'
121124
rel='noopener noreferrer'
@@ -141,7 +144,7 @@ const Footer = () => {
141144

142145
<li>
143146
<Link
144-
className='hover:/75 text-sm font-medium hover:text-gray-300'
147+
className='hover:/75 text-sm font-medium hover:text-gray-300'
145148
href='https://github.com/nikohoffren/fork-commit-merge/blob/main/CODE_OF_CONDUCT.md'
146149
target='_blank'
147150
rel='noopener noreferrer'
@@ -151,7 +154,7 @@ const Footer = () => {
151154
</li>
152155
<li>
153156
<Link
154-
className='hover:/75 text-sm font-medium hover:text-gray-300'
157+
className='hover:/75 text-sm font-medium hover:text-gray-300'
155158
href='https://opensource.org/'
156159
target='_blank'
157160
rel='noopener noreferrer'

0 commit comments

Comments
 (0)