Skip to content

Commit 9bd0e1d

Browse files
committed
Add social links
1 parent 315c3ed commit 9bd0e1d

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

spock-website/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,20 @@ <h3 class="text-xl font-semibold text-center mb-4 text-gray-100">Example Test Ou
274274
</div>
275275
</section>
276276

277+
<section class="py-16 bg-gray-800">
278+
<div class="container mx-auto px-6">
279+
<h3 class="text-3xl md:text-4xl font-bold text-center text-gray-100" data-aos="fade-up">
280+
Follow Us on
281+
</h3>
282+
<div class="container mx-auto px-6 text-center spock-blue-text text-md additional-links flex flex-wrap justify-center items-center gap-y-2 pt-8" data-aos="fade-up" data-aos-delay="100">
283+
<a href="https://fosstodon.org/@spockframework" class="mx-3 hover-underline-animation"><i class="fa-brands fa-mastodon"></i> @spockframework</a> <span class="link-separator">|</span>
284+
<a href="https://bsky.app/profile/spockframework.org" class="mx-3 hover-underline-animation"><i class="fa-brands fa-bluesky"></i> spockframework.org</a> <span class="link-separator">|</span>
285+
<a href="https://twitter.com/SpockFramework" class="mx-3 hover-underline-animation"><i class="fa-brands fa-x-twitter"></i> @spockframework</a> <span class="link-separator">|</span>
286+
<a href="https://github.com/spockframework/spock" class="mx-3 hover-underline-animation"><i class="fa-brands fa-github fa-lg"></i> spockframework/spock</a>
287+
</div>
288+
</div>
289+
</section>
290+
277291
<footer class="py-8 text-center text-gray-400 text-sm">
278292
<div class="container mx-auto px-6">
279293
&copy; 2025 Spock Framework Team. All rights reserved.

spock-website/src/icons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { library, dom } from '@fortawesome/fontawesome-svg-core';
22
import { faBook, faCode, faLaptopCode, faComments, faCommentDots} from '@fortawesome/free-solid-svg-icons';
3-
import { faGithub, faStackOverflow, faJava } from '@fortawesome/free-brands-svg-icons';
3+
import { faGithub, faStackOverflow, faJava, faXTwitter, faMastodon, faBluesky } from '@fortawesome/free-brands-svg-icons';
44

55
// Add icons to the library
6-
library.add(faGithub, faStackOverflow, faJava, faBook, faCode, faLaptopCode, faComments, faCommentDots);
6+
library.add(faGithub, faStackOverflow, faJava, faXTwitter, faMastodon, faBluesky, faBook, faCode, faLaptopCode, faComments, faCommentDots);
77

88
// Watch for <i> tags and replace with SVG
99
dom.watch();

0 commit comments

Comments
 (0)