Skip to content

Commit f924a85

Browse files
authored
Merge branch 'ep2025' into ep2025-issue-navbar
2 parents e6b77df + c6c9b81 commit f924a85

File tree

3 files changed

+36
-14
lines changed

3 files changed

+36
-14
lines changed

astro.config.mjs

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ import rehypeAutolinkHeadings from "rehype-autolink-headings";
99
import metaTags from "astro-meta-tags";
1010
import pagefind from "astro-pagefind";
1111
import deleteUnusedImages from "astro-delete-unused-images";
12-
import preload from "astro-preload";
1312
import { execSync } from "node:child_process";
14-
1513
import compress from "astro-compress";
1614

1715
let gitVersion = String(process.env.GIT_VERSION ?? "").slice(0, 7);
@@ -28,6 +26,28 @@ if (!gitVersion) {
2826
}
2927
}
3028

29+
function dontDie() {
30+
return {
31+
name: "dont-die",
32+
hooks: {
33+
"astro:config:setup": () => {
34+
process.on("uncaughtException", (error) => {
35+
if (
36+
error.message &&
37+
error.message.includes("Failed to load remote image")
38+
) {
39+
console.warn(
40+
"[dont-die] Caught remote image error:",
41+
error.message
42+
);
43+
return;
44+
}
45+
});
46+
},
47+
},
48+
};
49+
}
50+
3151
// https://astro.build/config
3252
export default defineConfig({
3353
vite: {
@@ -81,7 +101,6 @@ export default defineConfig({
81101
"/speaker/savannah-ostrowski": "/speaker/savannah-bailey",
82102
},
83103
integrations: [
84-
preload(),
85104
mdx(),
86105
sitemap(),
87106
tailwind({
@@ -90,9 +109,10 @@ export default defineConfig({
90109
metaTags(),
91110
pagefind(),
92111
deleteUnusedImages(),
93-
(await import("astro-compress")).default({
112+
compress({
94113
SVG: false,
95114
}),
115+
dontDie(),
96116
],
97117
output: "static",
98118
build: {

public/assets/preloaded/.gitkeep

Whitespace-only changes.

src/content/pages/sponsorship/information.mdx

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,16 @@ The EuroPython Society will have **public liability insurance** for the event. H
9494
We encourage you to arrange **separate insurance** for your property and equipment when possible.
9595

9696

97-
<h5> Booth Builder Contact</h5>
98-
99-
Our official booth builder is [Exposale](https://www.exposale.eu/). For any booth-related questions, you can contact: **_Monika Páleníková – expo@exposale.cz_**
100-
10197
### Exhibit Booths
10298

10399
All **Silver sponsors and above** will be assigned a booth (unless agreed otherwise), with sizes ranging from 6 sqm to 56 sqm, depending on the sponsorship package.
104100

101+
#### Booth Builder Contact
102+
103+
Our official booth builder is [Exposale](https://www.exposale.eu/). For any booth-related questions, you can contact: **_Monika Páleníková – expo@exposale.cz_**
104+
105+
106+
#### Booth Mockups
105107
👉 Please refer to the **[EuroPython 2025 – Exhibit Booths](https://drive.google.com/file/d/1Ped_tB0FUK4y5Jjbcf4_yZBAJWizE42-/view) document for booth mockups and details** on what’s included as part of your package.
106108

107109
#### Exhibition Schedule
@@ -156,7 +158,7 @@ and send it directly to **_Monika Páleníková at expo@exposale.cz_**.
156158
- Each booth includes one counter sized **1000mm (L) x 500mm (W) x 1000mm (H)**. **We highly recommend submitting a custom graphic for the counter.**
157159

158160

159-
<h4> Graphic Submission Guide</h4>
161+
#### Graphic Submission Guide
160162

161163
Graphics should be submitted directly to Exposale as detailed below.
162164

@@ -189,13 +191,13 @@ Graphics should be submitted directly to Exposale as detailed below.
189191

190192
---
191193

192-
### Parcel Delivery & Swag
194+
## Parcel Delivery & Swag
193195

194196
As part of our commitment to reducing the carbon footprint of EuroPython, we’re making the distribution of physical gifts optional. Instead of placing your items in attendee bags, you’ll have the freedom to distribute gifts directly from your booth.
195197

196198
We strongly encourage you to choose gifts made from environmentally friendly materials and focus on quality over quantity to reduce waste.
197199

198-
#### Shipping & Logistics
200+
### Shipping & Logistics
199201
Shipping to the venue is **exclusively handled by [DB Schenker](https://www.dbschenker.com/cz-en)**. Please contact their team directly to discuss costs and shipping arrangements.
200202

201203
**📞 Your DB Schenker contacts:**
@@ -221,7 +223,7 @@ Shipping to the venue is **exclusively handled by [DB Schenker](https://www.dbsc
221223
If you have any questions about shipping or customs, please contact DB Schenker directly.
222224

223225

224-
### Leads Collection
226+
## Leads Collection
225227

226228
We do not provide a dedicated tool for lead collection, but you are welcome to
227229
engage with attendees and request their information with their consent.You may
@@ -302,7 +304,7 @@ For your recruiting ad on the on-site job board at the venue,
302304
you can bring a printed ad and pin it to the whiteboard yourself.
303305

304306

305-
## Recruiting Session / Talent Track
307+
### Recruiting Session / Talent Track
306308

307309
The dedicated recruiting session will take place on one of the main conference days between 16 and 18 July,
308310
and will be part of the official conference schedule. The room and time will be announced closer to the conference date.
@@ -330,7 +332,7 @@ for an idea of what the session looked like at our last conference.
330332
---
331333

332334

333-
## Brand Visibility & marketing
335+
## Brand Visibility & Marketing
334336

335337
### Sponsor Logo
336338

0 commit comments

Comments
 (0)