diff --git a/src/components/sections/speakers-testimonials.astro b/src/components/sections/speakers-testimonials.astro new file mode 100644 index 000000000..11058c249 --- /dev/null +++ b/src/components/sections/speakers-testimonials.astro @@ -0,0 +1,97 @@ +--- +import Section from "@ui/Section.astro"; +import Headline from "@ui/Headline.astro"; + +const testimonials = [ + { + id: 1, + name: "Iulia Feroli", + profileImage: "https://media.licdn.com/dms/image/v2/C4E03AQE9vLqX7-hVJA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1628671930679?e=1762387200&v=beta&t=QwJC1ApU5L8QWqbEzGV_C6a2zBmg43P9c0ijvJlqDbc", + quote: "What an amazing first #europython <3 I've gotten so much lovely feedback and follow-up questions for my talk - the Python community here is the most encouraging and friendly!!", + linkedinUrl: "https://www.linkedin.com/posts/iuliaferoli_europython-wrapped-activity-7351230116837875715-8yH8/" + }, + { + id: 2, + name: "Sebastián Ramírez Montaño", + profileImage: "https://media.licdn.com/dms/image/v2/D4D03AQFaNx4Gkntzbw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1728333798826?e=1762387200&v=beta&t=DahHJDEce9HSFu49XTVtEcCicJBbodakGOT3LYCDC8I", + quote: "This was my first time at EuroPython, I had a lot of fun! And the audience was so nice. 😊😁🚀", + linkedinUrl: "https://www.linkedin.com/posts/tiangolo_this-was-my-first-time-at-europython-i-had-activity-7351699344753836032-iFaO/" + }, + { + id: 3, + name: "Farhaan Bukhsh", + profileImage: "https://media.licdn.com/dms/image/v2/D5603AQGU0wm3lNjVAw/profile-displayphoto-crop_800_800/B56ZkLZhzJHQAI-/0/1756832868031?e=1762387200&v=beta&t=3xl6ou5ldMEtf2SgEeOQ-luCd1DuecqRwmtKMJKlMhc", + quote: "Attending and speaking at EuroPython is one of my core memories now. This was such an exhilarating experience to speak at a conference where you have seen your heros speak.", + linkedinUrl: "https://www.linkedin.com/posts/farhaanbukhsh_attending-and-speaking-at-europython-is-activity-7357675714390732800-qGR3/" + } +]; + +const sectionTitle = "Why should you speak at EuroPython?"; +const sectionSubtitle = "Hear from our previous speakers"; +--- + +
+ +
+
+

{sectionSubtitle}

+
+ + +
+
+ + diff --git a/src/pages/index.astro b/src/pages/index.astro index ca6bca6a5..af6554067 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,7 +7,8 @@ import Keynoters from "@sections/keynoters/keynoters.astro"; import Speakers from "@sections/speakers.astro"; import Prague from "@sections/prague.astro"; import Sponsors from "@sections/sponsors/sponsors.astro"; -import Testimonials from "@sections/testimonials.astro"; +// import Testimonials from "@sections/testimonials.astro"; +import SpeakersTestimonials from "@sections/speakers-testimonials.astro"; import Subscribe from "@sections/subscribe.astro"; --- @@ -16,7 +17,8 @@ import Subscribe from "@sections/subscribe.astro"; description="EuroPython is the largest Python conference in Europe. We are looking forward to seeing you in Prague, Czech Republic & Remote from July 14th-20th 2025." > - + +