Skip to content

Commit 6a36e43

Browse files
authored
Merge branch 'ep2025' into ep2025-issue-1126
2 parents 43643d4 + 885fbc9 commit 6a36e43

38 files changed

+645
-155
lines changed

.env.development

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
EP_SESSIONS_API="https://static.europython.eu/programme/ep2025/releases/current/sessions.json"
22
EP_SPEAKERS_API="https://static.europython.eu/programme/ep2025/releases/current/speakers.json"
3+
EP_SCHEDULE_API="https://static.europython.eu/programme/ep2025/releases/current/schedule.json"

.env.preview

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
EP_SESSIONS_API="https://static.europython.eu/programme/ep2024/releases/current/sessions.json"
2-
EP_SPEAKERS_API="https://gist.githubusercontent.com/nikoshell/24f8c99de3758dc4ed1391876c382b43/raw/bdf11fe89e5010f35dc1351e9b71c02a19adefe2/24speakers.json"
3-
EP_SCHEDULE_API="https://static.europython.eu/programme/ep2024/releases/current/schedule.json"
1+
EP_SESSIONS_API="https://static.europython.eu/programme/ep2025/releases/current/sessions.json"
2+
EP_SPEAKERS_API="https://static.europython.eu/programme/ep2025/releases/current/speakers.json"
3+
EP_SCHEDULE_API="https://static.europython.eu/programme/ep2025/releases/current/schedule.json"

.env.production

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
EP_SESSIONS_API="https://static.europython.eu/programme/ep2025/releases/current/sessions.json"
22
EP_SPEAKERS_API="https://static.europython.eu/programme/ep2025/releases/current/speakers.json"
3+
EP_SCHEDULE_API="https://static.europython.eu/programme/ep2025/releases/current/schedule.json"

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@
1616
"@astrojs/mdx": "^4.2.3",
1717
"@astrojs/react": "^4.2.3",
1818
"@astrojs/sitemap": "^3.3.0",
19-
"@astrojs/tailwind": "^5.1.4",
20-
"@fontsource-variable/inter": "^5.1.1",
19+
"@astrojs/tailwind": "^5.1.5",
20+
"@fontsource-variable/inter": "^5.2.5",
2121
"@fortawesome/fontawesome-free": "^6.7.2",
2222
"@tailwindcss/typography": "^0.5.16",
2323
"@types/react": "^19.1.0",
2424
"@types/react-dom": "^19.1.1",
25-
"astro": "^5.1.6",
25+
"astro": "^5.5.2",
2626
"astro-delete-unused-images": "^1.0.3",
2727
"astro-meta-tags": "^0.3.1",
28-
"astro-pagefind": "^1.8.1",
28+
"astro-pagefind": "^1.8.3",
2929
"astro-preload": "^1.1.2",
3030
"clsx": "^2.1.1",
3131
"date-fns": "^4.1.0",
3232
"date-fns-tz": "^3.2.0",
33-
"hastscript": "^9.0.0",
33+
"hastscript": "^9.0.1",
3434
"js-yaml": "^4.1.0",
3535
"marked": "^15.0.7",
3636
"pagefind": "^1.3.0",
@@ -45,7 +45,7 @@
4545
},
4646
"devDependencies": {
4747
"@types/js-yaml": "^4.0.9",
48-
"prettier": "^3.4.2",
48+
"prettier": "^3.5.3",
4949
"prettier-plugin-astro": "^0.14.1"
5050
},
5151
"prettier": {

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/EuroPython2025_logo.png

7.54 KB
Loading

public/favicon.ico

-25.3 KB
Binary file not shown.

public/logo.png

19.6 KB
Loading

public/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/BaseHead.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const { title, description, image = "/social-card.png" } = Astro.props;
1313
<!-- Global Metadata -->
1414
<meta charset="utf-8" />
1515
<meta name="viewport" content="width=device-width,initial-scale=1" />
16-
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
16+
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
1717
<meta name="generator" content="Astro" />
1818
<link rel="sitemap" href="/sitemap-index.xml" />
1919

0 commit comments

Comments
 (0)