@@ -45,46 +45,50 @@ const sponsorTiers = tiers
4545
4646const topTier = sponsorTiers .find ((tier ) => tier .name === " Keystone" );
4747---
48+
4849<Section variant =" secondary" >
49- <Headline id =" sponsors" title =" Sponsors & Partners" center =true />
50- <div >
51- {
52- hasSponsors ? (
53- <p class = " text-center" >
54- EuroPython wouldn't be such an affordable event without the help
55- of the sponsors and partners. We'd like to thank all of them for their
56- support.
57- </p >
58- ) : (
59- <p class = " text-center" >
60- Sponsoring EuroPython guarantees you highly targeted visibility
61- and the opportunity to present yourself and your sponsor to one
62- of the largest and most diverse Python communities in Europe and
63- beyond.
64- </p >
65- )
66- }
50+ <Headline id =" sponsors" title =" Sponsors & Partners" center =" true" />
51+ <div class =" mb-10" >
52+ {
53+ hasSponsors ? (
54+ <p class = " text-center" >
55+ EuroPython wouldn't be such an affordable event without the help of
56+ the sponsors and partners. We'd like to thank all of them for their
57+ support.
58+ </p >
59+ ) : (
60+ <p class = " text-center" >
61+ Sponsoring EuroPython guarantees you highly targeted visibility and
62+ the opportunity to present yourself and your sponsor to one of the
63+ largest and most diverse Python communities in Europe and beyond.
64+ </p >
65+ )
66+ }
6767
68- <div class =" mt-4 text-center" >
69- <Button url =" /sponsor" >Become a sponsor</Button >
70- </div >
71- {
72- topTier && topTier .sponsors .length > 0 && (
73- <SponsorTier tier = { topTier } top = { true } />
74- )
75- }
68+ <div class =" mt-4 text-center" >
69+ <Button url =" /sponsor" >Become a sponsor</Button >
7670 </div >
71+ {
72+ topTier && topTier .sponsors .length > 0 && (
73+ <SponsorTier tier = { topTier } top = { true } />
74+ )
75+ }
76+ </div >
7777
78- { sponsorTiers .length > 0 && <Separator light />}
78+ { sponsorTiers .length > 0 && <hr />}
7979
80- <div class =" mb-20 " >
80+ <div class =" " >
8181 {
8282 sponsorTiers .map ((tier , index ) => (
8383 <Fragment >
8484 <SponsorTier tier = { tier } top = { tier .name === " Platinum" } />
85- { index !== sponsorTiers .length - 1 && <Separator light />}
85+ { index !== sponsorTiers .length - 1 && <hr />}
8686 </Fragment >
8787 ))
8888 }
89- </div >
89+ </div >
9090</Section >
91+
92+ <style >
93+ hr {margin: 10px 0;}
94+ </style >
0 commit comments