-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Blog posts: add all social media share button (#750)
- Loading branch information
Showing
6 changed files
with
333 additions
and
598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -576,6 +576,62 @@ exports[`Footer component > renders correctly 1`] = ` | |
</svg> | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
class="leading-6 transition hover:opacity-75 dark:text-gray-200" | ||
href="https://bsky.app/profile/adoptium.net" | ||
rel="noreferrer" | ||
target="_blank" | ||
> | ||
<span | ||
class="sr-only" | ||
> | ||
Bluesky | ||
</span> | ||
<svg | ||
class="h-6 w-6" | ||
fill="currentColor" | ||
height="1em" | ||
stroke="currentColor" | ||
stroke-width="0" | ||
viewBox="0 0 576 512" | ||
width="1em" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M407.8 294.7c-3.3-.4-6.7-.8-10-1.3c3.4 .4 6.7 .9 10 1.3zM288 227.1C261.9 176.4 190.9 81.9 124.9 35.3C61.6-9.4 37.5-1.7 21.6 5.5C3.3 13.8 0 41.9 0 58.4S9.1 194 15 213.9c19.5 65.7 89.1 87.9 153.2 80.7c3.3-.5 6.6-.9 10-1.4c-3.3 .5-6.6 1-10 1.4C74.3 308.6-9.1 342.8 100.3 464.5C220.6 589.1 265.1 437.8 288 361.1c22.9 76.7 49.2 222.5 185.6 103.4c102.4-103.4 28.1-156-65.8-169.9c-3.3-.4-6.7-.8-10-1.3c3.4 .4 6.7 .9 10 1.3c64.1 7.1 133.6-15.1 153.2-80.7C566.9 194 576 75 576 58.4s-3.3-44.7-21.6-52.9c-15.8-7.1-40-14.9-103.2 29.8C385.1 81.9 314.1 176.4 288 227.1z" | ||
/> | ||
</svg> | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
class="leading-6 transition hover:opacity-75 dark:text-gray-200" | ||
href="https://mastodon.social/@[email protected]" | ||
rel="noreferrer" | ||
target="_blank" | ||
> | ||
<span | ||
class="sr-only" | ||
> | ||
Mastodon | ||
</span> | ||
<svg | ||
class="h-6 w-6" | ||
fill="currentColor" | ||
height="1em" | ||
stroke="currentColor" | ||
stroke-width="0" | ||
viewBox="0 0 448 512" | ||
width="1em" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z" | ||
/> | ||
</svg> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import React from "react" | ||
import { Link } from "gatsby-plugin-react-i18next" | ||
import { FaGithub, FaLinkedin, FaSlack, FaYoutube } from "react-icons/fa" | ||
import { FaXTwitter } from "react-icons/fa6" | ||
import { FaXTwitter, FaBluesky, FaMastodon } from "react-icons/fa6" | ||
|
||
const SocialIcons = () => { | ||
return ( | ||
|
@@ -65,6 +65,30 @@ const SocialIcons = () => { | |
<FaSlack className="h-6 w-6" /> | ||
</Link> | ||
</li> | ||
|
||
<li> | ||
<a | ||
href="https://bsky.app/profile/adoptium.net" | ||
rel="noreferrer" | ||
target="_blank" | ||
className="leading-6 transition hover:opacity-75 dark:text-gray-200" | ||
> | ||
<span className="sr-only">Bluesky</span> | ||
<FaBluesky className="h-6 w-6" /> | ||
</a> | ||
</li> | ||
|
||
<li> | ||
<a | ||
href="https://mastodon.social/@[email protected]" | ||
rel="noreferrer" | ||
target="_blank" | ||
className="leading-6 transition hover:opacity-75 dark:text-gray-200" | ||
> | ||
<span className="sr-only">Mastodon</span> | ||
<FaMastodon className="h-6 w-6" /> | ||
</a> | ||
</li> | ||
</> | ||
) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.