Skip to content

Commit b8d4327

Browse files
Merge branch 'ep2025' into add_community_activities_page
2 parents aa39e3a + 3bed8e0 commit b8d4327

File tree

12 files changed

+43
-12
lines changed

12 files changed

+43
-12
lines changed

src/components/sponsor-tiers/sponsor-tiers.astro

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const tiers: SponsorTierProps[] = [
2929
},
3030
{
3131
title: "Diamond",
32-
slotsLeft: "2",
32+
slotsLeft: "Talk to us",
3333
price: 30_000,
3434
features: [
3535
"<strong>Extra large</strong> booth in exhibit hall (incl. TV & stand)",
@@ -60,7 +60,7 @@ const tiers: SponsorTierProps[] = [
6060
},
6161
{
6262
title: "Platinum",
63-
slotsLeft: "4",
63+
slotsLeft: 0,
6464
price: 18_000,
6565
features: [
6666
"<strong>Large</strong> booth in exhibit hall <strong>(incl. TV & stand)</strong>",
@@ -88,7 +88,7 @@ const tiers: SponsorTierProps[] = [
8888
{
8989
title: "Gold",
9090
price: 9_500,
91-
slotsLeft: "10",
91+
slotsLeft: 0,
9292
features: [
9393
"Booth in exhibit hall",
9494
"<strong>3</strong> conference tickets (€1500 value)",
@@ -110,7 +110,7 @@ const tiers: SponsorTierProps[] = [
110110
{
111111
title: "Silver",
112112
price: 7_000,
113-
slotsLeft: "10",
113+
slotsLeft: 0,
114114
features: [
115115
"Small booth in exhibit hall",
116116
"2 conference tickets (€1000 value)",
@@ -335,6 +335,8 @@ const formatPrice = (price: number | string) => {
335335
<div class="text-xl">
336336
{tier.slotsLeft === "Exclusive" ? (
337337
<>Exclusive</>
338+
) : tier.slotsLeft === "Talk to us" ? (
339+
<>Talk to us</>
338340
) : tier.slotsLeft ? (
339341
<>
340342
<span>{tier.slotsLeft}</span>

src/content/pages/beginners-day-unconference.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ subtitle:
99
As part of this year's Beginners' Day, on **Saturday 19th July** we'll be hosting the Unconference in cooperation with [junior.guru](https://junior.guru/). It's a full day of panel discussions, Q&A sessions, interactive sessions, and short talks focused on getting started and growing as a junior in a tech role.
1010

1111
<a href="https://junior.guru" class="block w-[350px] m-auto hover:scale-105 transition-transform " target="_blank">
12-
![junior.guru Logo](./images/junior-guru.png)
12+
![junior.guru Logo](./images/junior-guru.min.svg)
1313
</a>
1414

15+
1516
## Program
1617

1718
### Panel discussion: How to Succeed In A Junior Role

src/content/pages/guidelines.mdx

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
title: Speaker Guidelines
33
subtitle: Are you presenting a session at EuroPython this year? We can’t wait to see it!
44
---
5+
import { Image } from 'astro:assets';
6+
7+
import speakerPhoto from "./images/speakerPhoto.jpg";
8+
import posterPhoto from "./images/posterPhoto.jpg";
9+
import helperPhoto from "./images/helperPhoto.jpg";
510

611
# Speaker Guidelines
712

@@ -72,19 +77,23 @@ best of all of us, and in the case you mistype your code may not work. We also a
7277
backup of anything you need rather than relying on the internet: while we do have dedicated ethernet
7378
cables on the podiums, Murphy has a special nose for materials needed during live sessions.
7479

80+
<div class="flex gap-4 max-w-[800px]" >
81+
<Image src={speakerPhoto} alt="A speaker behind the podium" class="w-[60%] border-4 border-white rounded-lg shadow-lg" />
82+
</div>
83+
7584
## Making your session accessible for everyone
7685

7786
We want everyone to feel welcome and comfortable at EuroPython. As such, it’s important that your
7887
session is accessible for all of your audience members.
7988

80-
In order to make accessible slides, you can check the following guidelines. In general, please
89+
In order to make accessible slides, you can check the [following guidelines](https://www.gov.wales/how-create-accessible-powerpoint-presentations). In general, please
8190
consider the following:
8291

8392
* Use a simple, sans serif font with enough spacing between letters, with at least an 18-point font
8493
size. Examples include Calibri, Franklin Gothic Book, Lucida Sans and Segoe UI.
8594
* Use enough spacing between lines of text, and limit the amount of text per slide.
8695
* Use high-contrast colours, but please avoid red-green combinations. Try to use an off-white or
87-
cream background instead of bright white. This tool can help to select accessible colour
96+
cream background instead of bright white. [This tool](https://github.com/alan-turing-institute/distinctipy) can help to select accessible colour
8897
combinations.
8998
* Avoid using images with text that might be hard to read.
9099

@@ -132,6 +141,10 @@ there, they are likely to have just popped out, so don’t despair! Come back un
132141
**Meeting Room 241** will be available as a Speaker Ready Room. There will be a monitor with an HDMI
133142
cable if you want to check the set up for your presentation.
134143

144+
<div class="flex gap-4 max-w-[800px]" >
145+
<Image src={posterPhoto} alt="People reading a poster" class="w-[60%] border-4 border-white rounded-lg shadow-lg" />
146+
</div>
147+
135148
## Preparing for any technical difficulties
136149

137150
Even the best programmes can fail (we know this better than anyone!), and in a high pressure
@@ -187,6 +200,10 @@ time, your final number of attendees is likely to be smaller than this.
187200
| South Room 223+224 | 30 |
188201
</div>
189202

203+
<div class="flex gap-4 max-w-[800px]" >
204+
<Image src={helperPhoto} alt="A tutor helping a tutorial attendee at their laptop" class="w-[60%] border-4 border-white rounded-lg shadow-lg" />
205+
</div>
206+
190207
## Specific advice for tutorials
191208

192209
Please note that tutorials are intended to be a hands-on experience for the attendees, rather than a
@@ -199,9 +216,11 @@ Please keep in mind that if attendees need to download materials for your tutori
199216
give them a heads up at least a couple of days prior. Bandwidth will be limited, and many public
200217
resources have some kind of rate limiting set up.
201218

202-
If you will need helpers for your session, please add them to your session in Pretalx or contact the
203-
Programme Committee ([email protected]) ahead of the conference, as we’ll need to create
204-
tutorial tickets for them.
219+
If you will need helpers for your session, please add them to your session in Pretalx and contact the
220+
Programme Committee ([email protected]) ahead of the conference, as we’ll need to give them
221+
something for them to be able to attend the tutorials (in case they don't have
222+
tutorial tickets). In the case they do have tutorial tickets, let us know
223+
anyway.
205224

206225
To keep a more relaxed learning atmosphere there will be no video recording of your tutorial. Please
207226
note that this also means that participants cannot scroll back if they miss something, so if in
117 KB
Loading
44.8 KB
Loading

src/content/pages/images/junior-guru.min.svg

Lines changed: 4 additions & 0 deletions
Loading
-98 KB
Binary file not shown.
-7.99 KB
Binary file not shown.
137 KB
Loading
83.2 KB
Loading

0 commit comments

Comments
 (0)