@@ -3,9 +3,9 @@ import { getCollection } from "astro:content";
33import { Separator } from " ../separator/separator" ;
44import { Fragment } from " react" ;
55import { Fullbleed } from " ../layout/fullbleed" ;
6+ import Headline from " @ui/Headline.astro"
67
78import ButtonLink from " ../button-link/button-link.astro" ;
8- import { Title } from " ../typography/title" ;
99
1010import SponsorTier from " ./sponsor-tier.astro" ;
1111
@@ -48,19 +48,17 @@ const topTier = sponsorTiers.find((tier) => tier.name === "Keystone");
4848
4949<Fullbleed className =" bg-white py-24 px-6" >
5050 <section class =" max-w-4xl lg:max-w-6xl mx-auto mb-16" >
51+ <Headline id =" sponsors" title =" Sponsors" />
5152 <div >
52- <div class =" flex gap-6" >
53- <div class =" max-w-[1000px]" >
54- <Title level ={ 2 } >Sponsors</Title >
5553 {
5654 hasSponsors ? (
57- <p >
55+ <p class = " text-center " >
5856 EuroPython wouldn't be such an affordable event without the help
5957 of the sponsors. We'd like to thank all of them for their
6058 support.
6159 </p >
6260 ) : (
63- <p >
61+ <p class = " text-center " >
6462 Sponsoring EuroPython guarantees you highly targeted visibility
6563 and the opportunity to present yourself and your company to one
6664 of the largest and most diverse Python communities in Europe and
@@ -69,10 +67,8 @@ const topTier = sponsorTiers.find((tier) => tier.name === "Keystone");
6967 )
7068 }
7169
72- <div class =" mt-4" >
70+ <div class =" mt-4 text-center " >
7371 <ButtonLink url =" /sponsor" >Become a sponsor</ButtonLink >
74- </div >
75- </div >
7672 </div >
7773 {
7874 topTier && topTier .sponsors .length > 0 && (
0 commit comments