Skip to content

Commit 9893e16

Browse files
Small changes (#9)
1 parent 78a3920 commit 9893e16

File tree

14 files changed

+30
-84
lines changed

14 files changed

+30
-84
lines changed

src/components/sections/hero/hero.astro

Lines changed: 3 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -15,72 +15,6 @@ const action2 = "https://www.youtube.com/watch?v=laSzm-raS5A";
1515
class="bg-icons relative flex flex-col items-center justify-center"
1616
style=""
1717
>
18-
<div class="absolute inset-0 overflow-hidden -z-10">
19-
<!-- Left side icons -->
20-
<svg
21-
class="bg-icon top-[5%] left-[15%] rotate-[23deg] xl:block hidden"
22-
viewBox="-40 -40 200 200"
23-
><text x="10" y="50" font-size="80" font-weight="bold" fill="#A0B7E9"
24-
>{"{}"}</text
25-
></svg
26-
>
27-
<svg
28-
class="bg-icon top-[30%] left-[5%] rotate-[42deg] xl:block hidden"
29-
viewBox="-40 -40 200 200"
30-
><text x="10" y="50" font-size="80" font-weight="bold" fill="#A0B7E9"
31-
>#</text
32-
></svg
33-
>
34-
<svg
35-
class="bg-icon bottom-[30%] left-[18%] rotate-[15deg] xl:block hidden"
36-
viewBox="-40 -40 200 200"
37-
><text x="10" y="50" font-size="80" font-weight="bold" fill="#A0B7E9"
38-
>&lt;/&gt;</text
39-
></svg
40-
>
41-
<svg
42-
class="bg-icon bottom-[5%] left-[7%] rotate-[10deg] xl:block hidden"
43-
viewBox="-40 -40 200 200"
44-
><text
45-
x="10"
46-
y="50"
47-
font-size="80"
48-
font-weight="bold"
49-
fill="#A0B7E9"
50-
set:html={"..."}
51-
/></svg
52-
>
53-
54-
<!-- Right side icons -->
55-
<svg
56-
class="bg-icon top-[5%] right-[17%] rotate-[30deg] xl:block hidden"
57-
viewBox="-40 -40 200 200"
58-
><text x="10" y="50" font-size="80" font-weight="bold" fill="#A0B7E9"
59-
>&lt;/&gt;</text
60-
></svg
61-
>
62-
<svg
63-
class="bg-icon top-[30%] right-[6%] rotate-[15deg] xl:block hidden"
64-
viewBox="-40 -40 200 200"
65-
><text x="10" y="50" font-size="80" font-weight="bold" fill="#A0B7E9"
66-
>:=</text
67-
></svg
68-
>
69-
<svg
70-
class="bg-icon bottom-[30%] right-[20%] rotate-[45deg] xl:block hidden"
71-
viewBox="-40 -40 200 200"
72-
><text x="10" y="50" font-size="80" font-weight="bold" fill="#A0B7E9"
73-
>&gt;&gt;&gt;</text
74-
></svg
75-
>
76-
<svg
77-
class="bg-icon bottom-[5%] right-[8%] rotate-[33deg] xl:block hidden"
78-
viewBox="-40 -40 200 200"
79-
><text x="10" y="50" font-size="80" font-weight="bold" fill="#A0B7E9"
80-
>ƒ(x)</text
81-
></svg
82-
>
83-
</div>
8418
<div class="prose-xl relative z-10 text-center">
8519
<div class="grid md:flex items-center space-x-3 p-10 md:mt-0 justify-center">
8620
<div class="flex items-center justify-center">
@@ -93,20 +27,20 @@ const action2 = "https://www.youtube.com/watch?v=laSzm-raS5A";
9327
/>
9428
</div>
9529
<h1
96-
class="text-6xl md:text-8xl lg:text-9xl mb-0 font-bold"
30+
class="text-6xl md:text-8xl lg:text-9xl mb-0"
9731
>
9832
EuroPython
9933
</h1>
10034
</div>
10135
<p
10236
class="max-w-2xl mx-10 md:mx-40 text-center text-xl text-gray-700 -mt-6"
10337
>
104-
EuroPython 2026 is coming to Krakow! Join thousands of Python enthusiasts for a week of learning, networking, and community. Stay tuned for more details!
38+
EuroPython 2026 is coming to Kraków! Join thousands of Python enthusiasts for a week of learning, networking, and community. Stay tuned for more details!
10539
</p>
10640
</div>
10741
<!-- First 2x1 Grid -->
10842
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mx-6 my-10">
109-
<IconWithLabel icon="map-pin" label="Krakow, Poland" />
43+
<IconWithLabel icon="map-pin" label="Kraków, Poland" />
11044
<IconWithLabel icon="calendar-days" label="13-19 July, 2026" />
11145
</div>
11246

src/components/sections/hero/icon-label.astro

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
const { icon, label } = Astro.props;
2+
const { icon, label, subtitle } = Astro.props;
33
44
import Icon from "@ui/Icon.astro";
55
---
@@ -10,5 +10,8 @@ import Icon from "@ui/Icon.astro";
1010
>
1111
<Icon name={icon} size="fa-2x" />
1212
</div>
13-
<span class="p-2 text-xl font-medium"> {label}</span>
13+
<div class="p-2 flex flex-col">
14+
<span class="text-xl font-medium">{label}</span>
15+
{subtitle && <span class="text-sm text-gray-600">{subtitle}</span>}
16+
</div>
1417
</div>

src/components/sections/history.astro

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,14 @@ import Section from "../ui/Section.astro";
1818
In 2026, we expect <strong>1,500+ participants</strong>, <strong>100+ speakers</strong>, and <strong>7 days</strong> of talks,
1919
tutorials, and sprints.
2020
</p>
21+
22+
<div class="mt-12 pt-8 border-t border-gray-200">
23+
<h3 class="text-2xl md:text-3xl font-semibold mb-6">That's not everything!</h3>
24+
<p>
25+
<strong>EuroSciPy</strong> is also coming to Kraków! From <strong>July 18-24, 2026</strong>, the scientific Python community
26+
will gather in the same beautiful city. Both conferences will feature <strong>shared sprints</strong>, offering a unique opportunity
27+
to collaborate across the broader Python ecosystem and connect with both general Python developers and scientific computing specialists.
28+
</p>
29+
</div>
2130
</div>
2231
</Section>

src/content/deadlines/00_cfc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Call for Contributors
3-
subtitle: Join the EuroPython 2026 Team!
3+
subtitle: Join the Team!
44
url: https://forms.gle/maKez1nRMQZSwexWA
55
image: "./volunteers-2024.jpg"
66
---

src/content/deadlines/01_cfp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Call for Proposals
3-
subtitle: Open until TBD
3+
subtitle: Open until February 15th
44
url: /cfp
55
image: "./cfp.jpg"
66
---

src/content/deadlines/02_mentorship.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Speaker Mentorship
3-
subtitle: Open until TBD
3+
subtitle: Opens soon
44
url: /mentorship
55
image: mentorship1.jpg
66
---

src/content/pages/finaid.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ early.**
102102
| **15 July 2025** | | **Deadline for submitting Remote Ticket grant applications** |
103103
| 28 July 2025 || Deadline for submitting receipts/invoices |
104104

105-
_Thank you to everyone who applied—see you in Krakow!_
105+
_Thank you to everyone who applied—see you in Kraków!_
106106

107107
[^1]: If you've already applied for round 1, you don't have to
108108
reapply for round 2. Your application will automatically be considered for round
@@ -180,7 +180,7 @@ In addition, please pay close attention to the following:
180180
If you have any additional questions for the Financial Aid team, don't hesitate
181181
to contact us via [finaid@europython.eu][email-finaid].
182182

183-
See you at EuroPython in Krakow & Remote!
183+
See you at EuroPython in Kraków!
184184

185185
---
186186

src/content/pages/terms.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ E-mail: [board@europython.eu](mailto:board@europython.eu)
280280

281281
## History
282282

283-
- 2026-01-13: Updated for 2026 Krakow & Remote event
283+
- 2026-01-13: Updated for 2026 Kraków & Remote event
284284
- 2024-12-17: Updated for 2025 Prague & Remote event
285285
- 2024-03-22: Updated for 2024 Prague & Remote event
286286
- 2023-02-20: Updated for 2023 Prague & Remote event

src/pages/404.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Layout from "@layouts/Layout.astro";
33
---
44

55
<Layout
6-
title="404 - EuroPython 2026 | July 13th-19th 2026 | Krakow, Poland & Remote"
6+
title="404 - EuroPython 2026 | July 13th-19th 2026 | Kraków, Poland"
77
description="Page not found"
88
>
99
<div class="illustration">

src/pages/[...slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const { Content } = await post.render();
5959
6060
let title =
6161
post.data.title +
62-
" | EuroPython 2026 | July 13th-19th 2026 | Krakow, Poland & Remote";
62+
" | EuroPython 2026 | July 13th-19th 2026 | Kraków, Poland";
6363
const description = post.data.subtitle;
6464
---
6565

0 commit comments

Comments
 (0)