Skip to content

Commit fba8d59

Browse files
committed
Fix 3xx redirects
1 parent 0e38fb8 commit fba8d59

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

public/prague.svg

Lines changed: 1 addition & 1 deletion
Loading

src/components/sections/subscribe.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import Button from "@ui/Button.astro";
33
import Section from "@ui/Section.astro"
44
const socialLinks = [
5-
{ href: "https://linkedin.com/sponsor/europython/", icon: "linkedin", label: "LinkedIn" },
6-
{ href: "https://instagram.com/europython/", icon: "instagram", label: "Instagram" },
7-
{ href: "https://youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q", icon: "youtube", label: "YouTube" },
5+
{ href: "https://www.linkedin.com/company/europython/", icon: "linkedin", label: "LinkedIn" },
6+
{ href: "https://www.instagram.com/europython/", icon: "instagram", label: "Instagram" },
7+
{ 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" },
1010
{ href: "https://x.com/europython", icon: "x", label: "X (formerly Twitter)" },

src/data/links.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -314,11 +314,11 @@
314314
"items": [
315315
{
316316
"name": "EuroPython Society",
317-
"path": "https://europython-society.org"
317+
"path": "https://europython-society.org/"
318318
},
319319
{
320320
"name": "EuroPython Blog",
321-
"path": "https://blog.europython.eu"
321+
"path": "https://blog.europython.eu/"
322322
}
323323
]
324324
}
@@ -343,11 +343,11 @@
343343
],
344344
"socials": {
345345
"mastodon": "https://fosstodon.org/@europython",
346-
"linkedin": "https://linkedin.com/company/europython",
346+
"linkedin": "https://www.linkedin.com/company/europython",
347347
"github": "https://github.com/europython",
348348
"bluesky": "https://bsky.app/profile/europython.eu",
349349
"twitter": "https://x.com/europython",
350-
"instagram": "https://instagram.com/europython/",
351-
"youtube": "https://youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q"
350+
"instagram": "https://www.instagram.com/europython/",
351+
"youtube": "https://www.youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q"
352352
}
353353
}

0 commit comments

Comments
 (0)