Skip to content

Commit 5566f1a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f9d6dec commit 5566f1a

File tree

6 files changed

+21
-23
lines changed

6 files changed

+21
-23
lines changed

src/components/benefits-list/benefit-item.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ const Icon = {
3232
<slot />
3333
</div>
3434
</div>
35-
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<ul class="gap-5 md:grid grid-cols-3 p-0 m-0 list-none"><slot /></ul>
1+
<ul class="gap-5 md:grid grid-cols-3 p-0 m-0 list-none"><slot /></ul>

src/components/highlight-list/highlight-card.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
<ul class="space-y-2">
33
<slot />
44
</ul>
5-
</div>
5+
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<li class="flex">
22
<span class="mr-2">📌</span>
33
<span><slot /></span>
4-
</li>
4+
</li>

src/components/sponsor-tiers/ribbon.astro

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const { className, style } = Astro.props;
88
---
99

1010
<svg
11-
class={`ribbon-svg ${className || ''}
12-
w-[80px] h-[200px] md:w-[60px] md:right-[-5px] lg:w-[80px] lg:right-[-6px] top-[-16px] absolute
11+
class={`ribbon-svg ${className || ''}
12+
w-[80px] h-[200px] md:w-[60px] md:right-[-5px] lg:w-[80px] lg:right-[-6px] top-[-16px] absolute
1313
transform-origin-[top_right] transition-all duration-300 ease-in-out`}
1414
viewBox="0 0 105 180"
1515
xmlns="http://www.w3.org/2000/svg"
@@ -51,4 +51,3 @@ const { className, style } = Astro.props;
5151
</g>
5252
</g>
5353
</svg>
54-

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ const tiers: SponsorTierProps[] = [
1616
totalSlots: 1/1,
1717
price: "Custom Pricing",
1818
features: [
19-
`<span style="font-size: 1.2rem; margin-top: 5;">Everything in the Diamond tier, plus <strong>white glove bespoke customisation tailored specifically to your needs</strong>.</span><br><br>`,
20-
21-
`<span style="font-size: 1.2rem; margin-top: 5;">We’re happy to walk you through <strong>every step</strong> to create a sponsorship experience that’s <strong>uniquely yours</strong>, with <strong>full support to bring your vision to life</strong>.</span>`,
19+
`<span style="font-size: 1.2rem; margin-top: 5;">Everything in the Diamond tier, plus <strong>white glove bespoke customisation tailored specifically to your needs</strong>.</span><br><br>`,
20+
21+
`<span style="font-size: 1.2rem; margin-top: 5;">We’re happy to walk you through <strong>every step</strong> to create a sponsorship experience that’s <strong>uniquely yours</strong>, with <strong>full support to bring your vision to life</strong>.</span>`,
2222
],
2323
},
2424
{
@@ -45,7 +45,7 @@ features: [
4545
"Recruiting Session/Talent Track access",
4646
"Media corner access",
4747
"Published interview on YouTube channel",
48-
"1 custom YouTube short",
48+
"1 custom YouTube short",
4949
"Logo on <strong>lecterns</strong>, livestreams, recordings, banners, website, signage",
5050
"1 repost on EuroPython socials (35k total reach)",
5151
"Welcome post on EuroPython social media",
@@ -69,7 +69,7 @@ features: [
6969
"Recruiting Session/Talent Track access",
7070
"<strong>Media corner access</strong>",
7171
"<strong>Published interview on YouTube channel</strong>",
72-
"<strong>1 custom YouTube short</strong>",
72+
"<strong>1 custom YouTube short</strong>",
7373
"Logo on <strong>livestreams</strong>, recordings, banners, website, signage",
7474
"1 repost on EuroPython socials (35k total reach)",
7575
"Welcome post on EuroPython social media",
@@ -85,7 +85,7 @@ features: [
8585
"<strong>3</strong> conference tickets (€1500 value)",
8686
"<strong>3</strong> remote tickets (€450 value)",
8787
"Video ad(s) (silent) on venue digital signage",
88-
"Undefined job postings on EuroPython blog",
88+
"Undefined job postings on EuroPython blog",
8989
"5 job postings on website",
9090
"Video ad(s) on livestreams",
9191
"<strong>Recruiting Session/Talent Track access</strong>",
@@ -103,8 +103,8 @@ features: [
103103
"Small booth in exhibit hall",
104104
"2 conference tickets (€1000 value)",
105105
"2 remote tickets (€300 value)",
106-
"Video ad(s) (silent) on venue digital signage",
107-
"2 job postings on EuroPython blog",
106+
"Video ad(s) (silent) on venue digital signage",
107+
"2 job postings on EuroPython blog",
108108
"1 job posting on website",
109109
"Logo on website and signage",
110110
"Welcome post on EuroPython social media",
@@ -126,7 +126,7 @@ features: [
126126
price: 1_000,
127127
totalSlots: "unlimited",
128128
features: [
129-
"1 remote ticket (€150 value)",
129+
"1 remote ticket (€150 value)",
130130
"Logo on website and signage",
131131
"Welcome post on EuroPython social media",
132132
], },
@@ -196,7 +196,7 @@ const formatPrice = (price: number | string) => {
196196
<ul class="text-base">
197197
{tier.features.map((feature) => (
198198
<li set:html={`✔️ ${feature}`}></li>
199-
199+
200200
))}
201201
</ul>
202202
<div class="absolute bottom-4 right-4">
@@ -216,8 +216,8 @@ const formatPrice = (price: number | string) => {
216216
.sort((a, b) => {
217217
const order = { "Diamond": 1, "Keystone": 2};
218218
return order[a.title] - order[b.title];
219-
})
220-
219+
})
220+
221221
.map((tier) => (
222222
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
223223
<div class="h-[160px]">
@@ -249,7 +249,7 @@ const formatPrice = (price: number | string) => {
249249
</ul>
250250
<div class="absolute bottom-4 right-4">
251251
<ButtonLink url="undefined">Sign Up Now!</ButtonLink>
252-
</div>
252+
</div>
253253
</div>
254254
))}
255255
</div>
@@ -263,7 +263,7 @@ const formatPrice = (price: number | string) => {
263263
.sort((a, b) => {
264264
const order = { "Patron": 1, "Bronze": 2};
265265
return order[a.title] - order[b.title];
266-
})
266+
})
267267
.map((tier) => (
268268
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
269269
<div class="h-[160px]">
@@ -295,7 +295,7 @@ const formatPrice = (price: number | string) => {
295295
</ul>
296296
<div class="absolute bottom-4 right-4">
297297
<ButtonLink url="undefined">Sign Up Now!</ButtonLink>
298-
</div>
298+
</div>
299299
</div>
300300
))}
301301
</div>
@@ -315,7 +315,7 @@ const formatPrice = (price: number | string) => {
315315
@media (max-width: 768px) {
316316
.sponsor-tiers-container {
317317
width: 100%;
318-
padding: 0 10px;
318+
padding: 0 10px;
319319
position: relative;
320320
}
321321
}

0 commit comments

Comments
 (0)