-
Notifications
You must be signed in to change notification settings - Fork 72
Add draft of testimonials #1484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
clytaemnestra
wants to merge
8
commits into
ep2025
Choose a base branch
from
ep2025-post-conf-updates
base: ep2025
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
c7f3414
Add draft of testimonials
clytaemnestra 9ebfd2d
Merge branch 'ep2025' into ep2025-post-conf-updates
clytaemnestra f52b9d5
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 10f3278
Update src/components/sections/hero/hero.astro
clytaemnestra 92f3260
Add images
clytaemnestra aadfdbc
Fix image path
clytaemnestra 1ed27a7
Update src/components/sections/testimonials.astro
clytaemnestra e669ab1
Update src/components/sections/testimonials.astro
clytaemnestra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
--- | ||
import Section from "@ui/Section.astro"; | ||
|
||
const testimonials = [ | ||
{ | ||
id: 1, | ||
name: "Thibaud Colas", | ||
profileImage: "/images/thibaud.jpeg", | ||
quote: "Pretty sure EuroPython 2025 was my top 1 fav conference ever. Just the perfect mixture of catching up with people I know, meeting people I don't know, learning new things. Time well spent chatting w/ Python veterans and also first-timers.", | ||
linkedinUrl: "https://www.linkedin.com/posts/thibaudcolas_django-python-europython2025-activity-7353026711569035265-bb1U" | ||
}, | ||
{ | ||
id: 2, | ||
name: "Wojciech Nowicki, MBA", | ||
profileImage: "/images/wojciech.jpeg", | ||
quote: "I learned from brilliant speakers across topics spanning Python best practices, data engineering, and AI/ML applications. Even more valuable were the conversations with fellow developers, maintainers, community organizers, and representatives from many companies across the Python ecosystem.", | ||
linkedinUrl: "https://www.linkedin.com/posts/wonowicki_europython-python-opensource-activity-7352947135354433536-W_pQ" | ||
}, | ||
{ | ||
id: 3, | ||
name: "Diego Russo", | ||
profileImage: "/images/diego.jpeg", | ||
quote: "I've been attending EuroPython since 2011. To me, this is the Python conference. Period. I'm proud to be part of this community, and I will do my best to keep it that way.", | ||
linkedinUrl: "https://www.linkedin.com/posts/diegor_back-fromeuropython-2025and-still-buzzing-activity-7353354177646845953-4nNo/" | ||
}, | ||
{ | ||
id: 4, | ||
name: "Jodie Burchell", | ||
profileImage: "/images/jodie.jpeg", | ||
quote: "Last week's EuroPython was one of the most wonderful conferences I've ever been to, and my heart is still overflowing with all of the wonderful moments.", | ||
linkedinUrl: "https://www.linkedin.com/posts/jodieburchell_last-weeks-europython-was-one-of-the-most-ugcPost-7354418947993042947-NsXG/" | ||
}, | ||
{ | ||
id: 5, | ||
name: "Vassiliki Dalakiari", | ||
profileImage: "/images/vassillikki.jpeg", | ||
quote: "This event was built by the community, for the community, with authentic support for local groups. From the PyLadies meetups to the Python documentary screening, inclusivity felt genuine and present throughout the conference.", | ||
linkedinUrl: "https://www.linkedin.com/posts/activity-7355237790462148608-VYL-/" | ||
}, | ||
{ | ||
id: 6, | ||
name: "Rodrigo Girão Serrão", | ||
profileImage: "/images/rodrigo.jpeg", | ||
quote: `This was also the most rewarding conference for me so far. A conference like EuroPython is much more than just talks and tutorials. | ||
There is the hallway track, lightning talks ⚡️, social events, snacks exchange 🍿, the sprints weekend, ...`, | ||
linkedinUrl: "https://www.linkedin.com/posts/rodrigo-gir%C3%A3o-serr%C3%A3o_its-been-4-weeks-but-it-feels-like-it-activity-7360678874222936064-N1eg" | ||
} | ||
]; | ||
|
||
const sectionTitle = "See what participants say"; | ||
const sectionSubtitle = "Hear from our community"; | ||
--- | ||
|
||
<section class="bluebox relative py-16"> | ||
<div class="container mx-auto px-6"> | ||
<div class="text-center mb-12"> | ||
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">{sectionTitle}</h2> | ||
<p class="text-lg text-gray-600 max-w-2xl mx-auto">{sectionSubtitle}</p> | ||
</div> | ||
|
||
<div class="testimonials-grid grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 max-w-6xl mx-auto"> | ||
{testimonials.map((testimonial) => ( | ||
<a | ||
href={testimonial.linkedinUrl} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
class="testimonial-card bg-white rounded-xl shadow-lg hover:shadow-xl transition-all duration-300 p-6 border border-gray-100 hover:border-[#0077b5] hover:-translate-y-1 group" | ||
> | ||
<div class="flex items-center mb-4"> | ||
<img | ||
src={testimonial.profileImage} | ||
alt={`${testimonial.name}'s profile picture`} | ||
class="w-12 h-12 rounded-full mr-3 border-2 border-gray-200" | ||
/> | ||
<div> | ||
<h3 class="font-semibold text-gray-900 group-hover:text-[#0077b5] transition-colors"> | ||
{testimonial.name} | ||
</h3> | ||
</div> | ||
<div class="ml-auto"> | ||
<svg class="w-5 h-5 text-[#0077b5]" fill="currentColor" viewBox="0 0 24 24"> | ||
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/> | ||
</svg> | ||
</div> | ||
</div> | ||
<p class="text-gray-700 leading-relaxed italic"> | ||
"{testimonial.quote}" | ||
</p> | ||
</a> | ||
))} | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<style> | ||
.bluebox { | ||
background-color: #d4d5e5; | ||
z-index: 1; | ||
} | ||
|
||
.testimonial-card:hover { | ||
transform: translateY(-4px); | ||
} | ||
|
||
.testimonials-grid { | ||
animation: fadeInUp 0.6s ease-out; | ||
} | ||
|
||
@keyframes fadeInUp { | ||
from { | ||
opacity: 0; | ||
transform: translateY(30px); | ||
} | ||
to { | ||
opacity: 1; | ||
transform: translateY(0); | ||
} | ||
} | ||
|
||
.container { | ||
max-width: 1150px; | ||
} | ||
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.