diff --git a/src/components/SocialLinks.astro b/src/components/SocialLinks.astro index f4ff9c23a..18e088c38 100644 --- a/src/components/SocialLinks.astro +++ b/src/components/SocialLinks.astro @@ -11,14 +11,14 @@ const socialMap = { blog: { icon: "rss", label: "Blog", color: "" }, linkedin: { icon: "linkedin", label: "LinkedIn", color: "#0a66c2" }, github: { icon: "github", label: "GitHub", color: "#333333" }, + youtube: { icon: "youtube", label: "YouTube", color: "#ff0000" }, + discord: { icon: "discord", label: "Discord", color: "#5865f2" }, mastodon: { icon: "mastodon", label: "Mastodon", color: "#6364ff" }, bluesky: { icon: "bluesky", label: "Bluesky", color: "#0085ff" }, - twitter: { icon: "x-twitter", label: "Twitter", color: "#1da1f2" }, instagram: { icon: "instagram", label: "Instagram", color: "#e4405f" }, - discord: { icon: "discord", label: "Discord", color: "#5865f2" }, - facebook: { icon: "facebook", label: "Facebook", color: "#1877f2" }, - youtube: { icon: "youtube", label: "YouTube", color: "#ff0000" }, tiktok: { icon: "tiktok", label: "TikTok", color: "#000000" }, + facebook: { icon: "facebook", label: "Facebook", color: "#1877f2" }, + twitter: { icon: "x-twitter", label: "Twitter", color: "#1da1f2" }, }; --- diff --git a/src/components/sections/subscribe.astro b/src/components/sections/subscribe.astro index c7829ab1c..be5d9a582 100644 --- a/src/components/sections/subscribe.astro +++ b/src/components/sections/subscribe.astro @@ -2,11 +2,13 @@ import Button from "@ui/Button.astro"; import Section from "@ui/Section.astro" const socialLinks = [ -{ href: "https://www.linkedin.com/company/europython/", icon: "linkedin", label: "LinkedIn" }, - { href: "https://www.instagram.com/europython/", icon: "instagram", label: "Instagram" }, + { href: "https://www.linkedin.com/company/europython/", icon: "linkedin", label: "LinkedIn" }, + { href: "https://github.com/europython", icon: "github", label: "GitHub" }, { href: "https://www.youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q", icon: "youtube", label: "YouTube" }, { href: "https://fosstodon.org/@europython", icon: "mastodon", label: "Mastodon" }, { href: "https://bsky.app/profile/europython.eu", icon: "bluesky", label: "Bluesky" }, + { href: "https://www.instagram.com/europython/", icon: "instagram", label: "Instagram" }, + { href: "https://www.tiktok.com/@europython/", icon: "tiktok", label: "TikTok" }, { href: "https://x.com/europython", icon: "x", label: "X (formerly Twitter)" }, ]; --- diff --git a/src/content/pages/contacts.mdx b/src/content/pages/contacts.mdx index 46d90e056..b97083299 100644 --- a/src/content/pages/contacts.mdx +++ b/src/content/pages/contacts.mdx @@ -17,11 +17,13 @@ project/event to suggest for our newsletter. Follow us on these channels: - [EuroPython LinkedIn](https://www.linkedin.com/company/europython) +- [EuroPython Website](https://github.com/EuroPython/website) +- [EuroPython YouTube Channel](https://youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q) (conference videos) - [EuroPython Mastodon](https://fosstodon.org/@europython) - [EuroPython Bluesky](https://bsky.app/profile/europython.eu) -- [EuroPython Telegram](https://t.me/+dEi3nIHzGRw0YjQy) - [EuroPython Instagram](https://instagram.com/europython/) -- [EuroPython YouTube Channel](https://youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q) (conference videos) +- [EuroPython TikTok](https://www.tiktok.com/@europython) +- [EuroPython Telegram](https://t.me/+dEi3nIHzGRw0YjQy) - [EuroPython X Account](https://x.com/europython) ## EuroPython Helpdesk diff --git a/src/data/links.json b/src/data/links.json index 979f9c10b..a60ed2248 100644 --- a/src/data/links.json +++ b/src/data/links.json @@ -173,6 +173,7 @@ "bluesky": "https://bsky.app/profile/europython.eu", "twitter": "https://x.com/europython", "instagram": "https://www.instagram.com/europython/", - "youtube": "https://www.youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q" + "youtube": "https://www.youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q", + "tiktok": "https://www.tiktok.com/@europython" } }