Skip to content

Commit 2703370

Browse files
committed
order social icons and align footer and subscribe icon order
1 parent af35038 commit 2703370

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/components/SocialLinks.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ const socialMap = {
1111
blog: { icon: "rss", label: "Blog", color: "" },
1212
linkedin: { icon: "linkedin", label: "LinkedIn", color: "#0a66c2" },
1313
github: { icon: "github", label: "GitHub", color: "#333333" },
14+
youtube: { icon: "youtube", label: "YouTube", color: "#ff0000" },
15+
discord: { icon: "discord", label: "Discord", color: "#5865f2" },
1416
mastodon: { icon: "mastodon", label: "Mastodon", color: "#6364ff" },
1517
bluesky: { icon: "bluesky", label: "Bluesky", color: "#0085ff" },
16-
twitter: { icon: "x-twitter", label: "Twitter", color: "#1da1f2" },
1718
instagram: { icon: "instagram", label: "Instagram", color: "#e4405f" },
18-
discord: { icon: "discord", label: "Discord", color: "#5865f2" },
19-
facebook: { icon: "facebook", label: "Facebook", color: "#1877f2" },
20-
youtube: { icon: "youtube", label: "YouTube", color: "#ff0000" },
2119
tiktok: { icon: "tiktok", label: "TikTok", color: "#000000" },
20+
facebook: { icon: "facebook", label: "Facebook", color: "#1877f2" },
21+
twitter: { icon: "x-twitter", label: "Twitter", color: "#1da1f2" },
2222
};
2323
---
2424

src/components/sections/subscribe.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
import Button from "@ui/Button.astro";
33
import Section from "@ui/Section.astro"
44
const socialLinks = [
5-
{ href: "https://www.linkedin.com/company/europython/", icon: "linkedin", label: "LinkedIn" },
6-
{ href: "https://www.instagram.com/europython/", icon: "instagram", label: "Instagram" },
5+
{ href: "https://www.linkedin.com/company/europython/", icon: "linkedin", label: "LinkedIn" },
6+
{ href: "https://github.com/europython", icon: "github", label: "GitHub" },
77
{ href: "https://www.youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q", icon: "youtube", label: "YouTube" },
88
{ href: "https://fosstodon.org/@europython", icon: "mastodon", label: "Mastodon" },
99
{ href: "https://bsky.app/profile/europython.eu", icon: "bluesky", label: "Bluesky" },
10+
{ href: "https://www.instagram.com/europython/", icon: "instagram", label: "Instagram" },
1011
{ href: "https://www.tiktok.com/@europython/", icon: "tiktok", label: "TikTok" },
1112
{ href: "https://x.com/europython", icon: "x", label: "X (formerly Twitter)" },
1213
];

0 commit comments

Comments
 (0)