11---
2+ import { Logo } from " ../logo" ;
23import { Image } from " astro:assets" ;
34import heroImage from " ./conference_photo.jpg" ;
45
56import IconWithLabel from " ./icon-label.astro" ;
6- import ButtonLink from " ../../components/button-link/button-link .astro" ;
7+ import Button from " @ui/Button .astro" ;
78
8- import HeaderLogo from " ../header/header-logo.astro" ;
9- const action1 = " https://ep2025.europython.eu/tickets" ;
10- const action2 = " https://ep2025.europython.eu/sponsorship/sponsor/" ;
9+ const action1 = " /tickets" ;
10+ const action2 = " /sponsorship/sponsor/" ;
1111---
1212
1313<div
@@ -80,16 +80,16 @@ const action2 = "https://ep2025.europython.eu/sponsorship/sponsor/";
8080 ></svg
8181 >
8282 </div >
83- <div class =" relative z-10 text-center" >
84- <div class =" flex items-center space-x-3 p-10 md:mt-20" >
85- <div class =" w-25 h-25 flex items-center justify-center" >
86- <HeaderLogo />
83+ <div class =" prose-xl relative z-10 text-center" >
84+ <div class =" flex items-center space-x-3 p-10 md:mt-20 justify-center " >
85+ <div class =" w-200 h-200 flex items-center justify-center" >
86+ <Logo className = " h-full block md:w-full lg:w-[200px] pr-3 lg:pr-8 " />
8787 </div >
88- <h1 class =" text-5xl md:text-9xl m-0 font-bold text-[#17223A]" >
88+ <h1 class =" text-5xl md:text-8xl lg:text- 9xl m-0 font-bold text-[#17223A]" >
8989 EuroPython
9090 </h1 >
9191 </div >
92- <p class =" max-w-2xl mx-10 md:mx-40 text-center text-lg text-gray-700 mt-2" >
92+ <p class =" max-w-2xl mx-10 md:mx-40 text-center text-xl text-gray-700 mt-2" >
9393 Discover the latest Python trends, learn from 180+ expert speakers,
9494 network with fellow developers, enjoy social events, and explore open
9595 spaces to spark new ideas.
@@ -106,27 +106,12 @@ const action2 = "https://ep2025.europython.eu/sponsorship/sponsor/";
106106 </div >
107107
108108 <!-- Second 2x1 Grid with Action Buttons -->
109- <div class =" grid grid-cols-1 md:grid-cols-2 gap-4 m-6" >
109+ <div class =" text-center grid grid-cols-1 md:grid-cols-2 gap-4 m-6" >
110110 <div >
111- <ButtonLink
112- secondary
113- url ={ action1 }
114- className =" mb-4 rounded-lg text-xl"
115- isExternal ={ true }
116- >
117- Register Now
118- </ButtonLink >
111+ <Button secondary url ={ action1 } > Register Now </Button >
119112 </div >
120113 <div class =" btn-outline" >
121- <a
122- class =" font-bold text-lg px-4 py-4 bg-button rounded-[10px] inline-block leading-4 hover:bg-button-hover not-prose outline-solid outline bg-transparent rounded-xlborder text-xl text-secondary outline-secondary text-black"
123- href ={ action2 }
124- >
125- Call for Sponsors
126- <span class =" inline-block ml-1 font-system text-lg leading-4" >
127- ↗
128- </span ></a
129- >
114+ <Button outline url ={ action2 } > Call for Sponsors </Button >
130115 </div >
131116 </div >
132117</div >
0 commit comments