Skip to content

Commit 55d5cfd

Browse files
removed the duplicated social link email (#309)
1 parent e99c5a1 commit 55d5cfd

2 files changed

Lines changed: 10 additions & 11 deletions

File tree

components/landing-page/footer.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ export function Footer() {
6969
className='rounded transition-opacity hover:opacity-80 focus:ring-2 focus:ring-white/50 focus:outline-none'
7070
target='_blank'
7171
rel='noopener noreferrer'
72-
aria-label={`Follow us on ${name}`}
72+
aria-label={Follow us on ${name}}
7373
>
7474
<Image
75-
src={`/footer/${name}.svg`}
76-
alt={`${name} icon`}
75+
src={/footer/${name}.svg}
76+
alt={${name} icon}
7777
width={24}
7878
height={24}
7979
className='h-6 w-6'
@@ -89,7 +89,7 @@ export function Footer() {
8989
))}
9090
<div className='ml-4 h-6 w-0.5 bg-[#2B2B2B]' aria-hidden='true' />
9191
<Link
92-
href={`mailto:${socialLinks.gmail}`}
92+
href={mailto:${socialLinks.gmail}}
9393
className='rounded transition-opacity hover:opacity-80 focus:ring-2 focus:ring-white/50 focus:outline-none'
9494
aria-label='Contact us via email'
9595
>
@@ -98,7 +98,7 @@ export function Footer() {
9898
alt='Email contact'
9999
width={24}
100100
height={24}
101-
className='h-6 w-6'
101+
className='h-21 w-20'
102102
/>
103103
</Link>
104104
</nav>
@@ -158,11 +158,11 @@ export function Footer() {
158158
className='rounded transition-opacity hover:opacity-80 focus:ring-2 focus:ring-white/50 focus:outline-none'
159159
target='_blank'
160160
rel='noopener noreferrer'
161-
aria-label={`Follow us on ${name}`}
161+
aria-label={Follow us on ${name}}
162162
>
163163
<Image
164-
src={`/footer/${name}.svg`}
165-
alt={`${name} icon`}
164+
src={/footer/${name}.svg}
165+
alt={${name} icon}
166166
width={24}
167167
height={24}
168168
className='h-6 w-6'
@@ -187,4 +187,4 @@ export function Footer() {
187187
</div>
188188
</footer>
189189
);
190-
}
190+
}

lib/config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export const socialLinks = {
88
github: 'https://github.com/boundlessfi',
99
discord: 'https://discord.gg/boundlessfi',
1010
telegram: 'https://t.me/boundlessfi',
11-
gmail: 'hello@boundlessfi.xyz',
1211
};
1312
export const ProfileSocialLinks = {
1413
discord: 'https://discord.gg/boundlessfi',
@@ -39,4 +38,4 @@ export const backedBy = [
3938
image: '/trustless.svg',
4039
url: 'https://www.trustlesswork.com/',
4140
},
42-
];
41+
];

0 commit comments

Comments
 (0)