Skip to content

Commit 7a4efb3

Browse files
committed
Update links with GitHub and Bluesky
1 parent e166ec5 commit 7a4efb3

6 files changed

Lines changed: 26 additions & 2 deletions

File tree

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
5+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
Lines changed: 1 addition & 0 deletions
Loading

src/components/Social/Social.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ const Social = () => (
1717
</svg>
1818
</Link>
1919
</li>
20+
<li>
21+
<Link href="https://bsky.app/profile/crru.org.uk" rel="noopener noreferrer" target="_blank" title="Bluesky">
22+
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg">
23+
<path d="m13.8728 7.15773c7.3375 5.61247 15.2297 16.99207 18.1274 23.09907 2.8978-6.1065 10.7897-17.4868 18.1273-23.09907 5.2943-4.0497 13.8725-7.183127 13.8725 2.78761 0 1.99126-1.1205 16.72786-1.7778 19.12036-2.2844 8.3177-10.6089 10.4392-18.0136 9.1552 12.9433 2.2444 16.236 9.6789 9.1251 17.1135-13.505 14.1196-19.4107-3.5427-20.9246-8.0684-.2774-.8297-.4072-1.2178-.4091-.8878-.0019-.33-.1317.0581-.4091.8878-1.5133 4.5257-7.4188 22.1884-20.9246 8.0684-7.11101-7.4346-3.81845-14.8695 9.1251-17.1135-7.4049 1.284-15.72952-.8375-18.01364-9.1552-.65724-2.3927-1.77776-17.1293-1.77776-19.12036 0-9.970737 8.57838-6.83731 13.8725-2.78761z" fill="#fff" className="main" />
24+
</svg>
25+
</Link>
26+
</li>
2027
<li>
2128
<Link href="https://twitter.com/CRRU" rel="noopener noreferrer" target="_blank" title="Twitter">
2229
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg">

src/helpers/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export const AMAZON_REFERRAL_LINK = 'https://www.amazon.co.uk/exec/obidos/redire
3737
export const SOCIAL_MEDIA_ACCOUNTS = [
3838
'https://instagram.com/crru.org.uk',
3939
'https://facebook.com/crru.org.uk',
40+
'https://bsky.app/profile/crru.org.uk',
4041
'https://twitter.com/CRRU',
4142
'https://youtube.com/@crruorguk',
4243
'https://linkedin.com/company/cetacean-research-&-rescue-unit-crru-',

src/layout/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const Footer = () => (
3838
<li><Link href={sitemap.terms.path}>Terms</Link></li>
3939
<li><Link href={sitemap.credits.path}>Credits</Link></li>
4040
<li><Link href={sitemap.contact.path}>Contact</Link></li>
41-
<li><Link href={sitemap.sitemap.path}>Sitemap</Link></li>
41+
<li><Link href="https://github.com/CRRU-UK" className="external" rel="noopener noreferrer" target="_blank">Open Source</Link></li>
4242
</ul>
4343

4444
<ul className="footer-contact">

src/scss/layout/footer.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,21 @@ footer .footer-left .footer-links li {
173173
}
174174
}
175175

176+
footer .footer-left .footer-links li a.external::after {
177+
content: '';
178+
display: inline-block;
179+
margin-left: 5px;
180+
width: 10px;
181+
height: 10px;
182+
background: url('../../../public/images/icons/external-light.svg') center center no-repeat transparent;
183+
background-size: contain;
184+
185+
@include variables.breakpoint('small') {
186+
width: 8px;
187+
height: 8px;
188+
}
189+
}
190+
176191
footer .footer-left .footer-contact {
177192
flex-direction: column;
178193
margin-bottom: 20px;

0 commit comments

Comments
 (0)