Skip to content

Commit 4372aec

Browse files
committed
Update sponsor tier
1 parent 42e583a commit 4372aec

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

src/components/SponsorLogo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const {
2020
} = sponsor.data;
2121
2222
const logo = sponsorLogos[sponsor.id];
23-
const slug = tier==="Partners"? `/community-partners#sponsor-${sponsorId}`: tier==="Platinum" ? `/sponsor/${sponsorId}` : tier==="Media Partners" ? `/media-partners#sponsor-${sponsorId}` : tier==="Startup" ? `/startups#sponsor-${sponsorId}` : `/sponsors#sponsor-${sponsorId}`
23+
const slug = tier==="Partners"? `/community-partners#sponsor-${sponsorId}`: tier==="Platinum" ? `/sponsor/${sponsorId}` : tier==="Media Partners" ? `/media-partners#sponsor-${sponsorId}` : tier==="Startups" ? `/startups#sponsor-${sponsorId}` : `/sponsors#sponsor-${sponsorId}`
2424
2525
---
2626

src/components/sections/sponsors/sponsor-tier.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ const { tier, level = 2} = Astro.props;
3030
`level-${level}`,
3131
{
3232
"grid-cols-1 md:grid-cols-2 m-20 [&>*]:scale-110": level===0,
33-
"grid-cols-1 md:grid-cols-2 lg:grid-cols-3 [&>*]:scale-80": level > 0 && level << 6,
34-
"grid-cols-2 md:grid-cols-3 lg:grid-cols-4 [&>*]:scale-80" : level===6,
33+
"grid-cols-1 md:grid-cols-2 lg:grid-cols-3 [&>*]:scale-90": level > 0 && level << 6,
34+
"grid-cols-2 md:grid-cols-3 lg:grid-cols-4 [&>*]:scale-90" : level===6,
35+
"grid-cols-2 md:grid-cols-3 lg:grid-cols-4 [&>*]:scale-85" : level>6,
3536
},
3637
]}
3738
>

src/components/sections/sponsors/sponsors.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const tiers = [
1414
"Platinum X",
1515
"Gold",
1616
"Silver",
17-
"Startup",
17+
"Startups",
1818
"Bronze",
1919
"Patron",
2020
"Financial Aid",

src/content/sponsors/gel/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ socials:
1515
youtube: "https://www.youtube.com/@EdgeDB"
1616
tier: Platinum
1717
logo_padding: 5px
18-
draft: true
1918
---
2019

2120
# About Gel

src/content/sponsors/startup/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ url: "https://ep2025.europython.eu/"
44
description: ""
55
socials:
66
youtube: "https://www.youtube.com/c/europythonconference"
7-
tier: Startup
7+
tier: Startups
88
logo_padding: 5px
99
draft: true
1010
---

src/pages/media-partners.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { getCollection } from "astro:content";
33
import Layout from "@layouts/SectionLayout.astro";
44
import SponsorCard from "@components/SponsorCard.astro";
55
import Headline from "@ui/Headline.astro";
6+
import Button from "@ui/Button.astro";
67
78
const sponsors = (await getCollection("sponsors", ({ data }) => {
89
const isProd = import.meta.env.MODE === "production";
@@ -31,5 +32,5 @@ const sponsors = (await getCollection("sponsors", ({ data }) => {
3132
</div>
3233
)}
3334
<p class="pb-5">
34-
Are you part of a media outlet or platform that shares Python or tech-related content? Interested in partnering with EuroPython? We’d love to hear from you — reach out to us at [email protected]!
35+
Are you part of a media outlet or platform that shares Python or tech-related content? Interested in partnering with EuroPython? We’d love to hear from you — reach out to us at <Button custom class="font-bold text-button-active hover:underline" url="mailto:[email protected]">[email protected]</Button>!
3536
</p></Layout>

src/pages/sponsors.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@ const tiers = [
1717
"Platinum X",
1818
"Gold",
1919
"Silver",
20-
"Startup",
2120
"Bronze",
2221
"Patron",
2322
"Financial Aid",
2423
"Supporters",
2524
"Partners",
26-
"Media Partners",
2725
] as const;
2826
2927
// Group sponsors by their tier

src/pages/startups.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { getCollection } from "astro:content";
33
import Layout from "@layouts/SectionLayout.astro";
44
import SponsorCard from "@components/SponsorCard.astro";
55
import Headline from "@ui/Headline.astro";
6+
import Button from "@ui/Button.astro";
7+
68
79
const sponsors = (await getCollection("sponsors", ({ data }) => {
810
const isProd = import.meta.env.MODE === "production";
@@ -21,7 +23,7 @@ const sponsors = (await getCollection("sponsors", ({ data }) => {
2123

2224
<Headline as="h1" id="startups" title="Startups" />
2325
<p class="pb-5">
24-
EuroPython is a community-driven conference, and we wouldn’t be able to empower early-stage innovation and support emerging talent in the Python ecosystem without the generous support of our **Startups** tier sponsors. Learn more about them below (listed in alphabetical order).
26+
EuroPython is a community-driven conference, and we wouldn’t be able to empower early-stage innovation and support emerging talent in the Python ecosystem without the generous support of our <strong>Startups</strong> tier sponsors. Learn more about them below (listed in alphabetical order).
2527
</p>
2628
{sponsors.length > 0 && (
2729
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
@@ -31,5 +33,5 @@ const sponsors = (await getCollection("sponsors", ({ data }) => {
3133
</div>
3234
)}
3335
<p class="pb-5">
34-
Are you a startup working with Python or building something exciting in the tech space? Looking to grow your visibility and connect with a vibrant developer community? We’d love to hear from you — reach out to us at sponsoring@europython.eu!
36+
Are you a startup working with Python or building something exciting in the tech space? Looking to grow your visibility and connect with a vibrant developer community? We’d love to hear from you — reach out to us at <Button custom class="font-bold text-button-active hover:underline" url="mailto:board@europython.eu">[email protected]</Button>!
3537
</p></Layout>

0 commit comments

Comments
 (0)