diff --git a/app/assets/images/social-icons/bluesky.svg b/app/assets/images/social-icons/bluesky.svg new file mode 100644 index 000000000..43530a72a --- /dev/null +++ b/app/assets/images/social-icons/bluesky.svg @@ -0,0 +1,46 @@ + + + + + + + diff --git a/app/assets/stylesheets/2017/components/_social.scss b/app/assets/stylesheets/2017/components/_social.scss index 1773d5de4..f1523169f 100644 --- a/app/assets/stylesheets/2017/components/_social.scss +++ b/app/assets/stylesheets/2017/components/_social.scss @@ -31,5 +31,7 @@ .link-domain-peertube { @include social-icon("peertube"); } .link-domain-bandcamp { @include social-icon("bandcamp"); } .link-domain-reddit { @include social-icon("reddit"); } + .link-domain-bsky, // the bluesky domain is bsky for now, but it may change or have more in the future + .link-domain-bluesky { @include social-icon("bluesky"); } } } diff --git a/app/helpers/links_helper.rb b/app/helpers/links_helper.rb index 5af996b59..2984fe191 100644 --- a/app/helpers/links_helper.rb +++ b/app/helpers/links_helper.rb @@ -3,6 +3,7 @@ module LinksHelper 'CrimethInc. on Mastodon' => 'https://todon.eu/@CrimethInc', 'Crimethinc. on Facebook' => 'https://www.facebook.com/To-Change-Everything-103734818122357', 'Crimethinc. on Instagram' => 'https://instagram.com/crimethincredux', + 'Crimethinc. on Bluesky' => 'https://crimethinc.bsky.social', 'CrimethInc. on Github' => 'https://github.com/crimethinc', 'CrimethInc. on Tumblr' => 'https://crimethinc.tumblr.com', 'CrimethInc. on Bandcamp' => 'https://crimethinc.bandcamp.com', @@ -20,6 +21,7 @@ def social_links_by_domain 'Mastodon' => 'https://todon.eu/@crimethinc', 'Facebook' => 'https://www.facebook.com/To-Change-Everything-103734818122357', 'Instagram' => 'https://instagram.com/crimethincredux', + 'Bluesky' => 'https://crimethinc.bsky.social', 'Github' => 'https://github.com/crimethinc', 'Telegram' => 'https://t.me/ExWorkers', 'Tumblr' => 'https://crimethinc.tumblr.com',