From d676f55a3108638072d514789bbbb517ca2f0311 Mon Sep 17 00:00:00 2001 From: ivke995 Date: Mon, 17 Feb 2025 17:02:22 +0100 Subject: [PATCH 1/2] fix testimonial card - company and title --- apps/website/src/components/Avatar.astro | 4 ++-- apps/website/src/components/testimonial.astro | 9 +++++---- apps/website/src/content/testimonials/1raphael-bauer.md | 3 ++- apps/website/src/content/testimonials/2paul-jeszensky.md | 3 ++- apps/website/src/content/testimonials/3michele.md | 3 ++- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/apps/website/src/components/Avatar.astro b/apps/website/src/components/Avatar.astro index f92acbd0..cb294d34 100644 --- a/apps/website/src/components/Avatar.astro +++ b/apps/website/src/components/Avatar.astro @@ -2,9 +2,9 @@ const { imagePath, name, company, role } = Astro.props; --- -
+
- + {name}
{company} {role} diff --git a/apps/website/src/components/testimonial.astro b/apps/website/src/components/testimonial.astro index 4af5f431..eb4886a6 100644 --- a/apps/website/src/components/testimonial.astro +++ b/apps/website/src/components/testimonial.astro @@ -16,6 +16,7 @@ for (const testimonial of testimonialCollections) { name: testimonial.data.name, title: testimonial.data.title, imageUrl: testimonial.data.imageUrl, + company: testimonial.data.company, }); } --- @@ -33,12 +34,12 @@ for (const testimonial of testimonialCollections) { class="px-4 sm:px-7 no-scrollbar flex overflow-x-auto w-full gap-2 pt-12 md:pt-16 lg:pt-24" > { - testimonials.map(({ name, content, title, imageUrl }) => ( -
-

+ testimonials.map(({ name, content, title, imageUrl, company }) => ( +

+

- +
)) diff --git a/apps/website/src/content/testimonials/1raphael-bauer.md b/apps/website/src/content/testimonials/1raphael-bauer.md index 0259e280..ed73caf6 100644 --- a/apps/website/src/content/testimonials/1raphael-bauer.md +++ b/apps/website/src/content/testimonials/1raphael-bauer.md @@ -1,7 +1,8 @@ --- imageUrl: "/raphael-bauer.png" name: "Raphael Bauer" -title: "Interim CTO" +title: "CTO" +company: "Interim" --- CroCoder is one of the most trusted partners in my network. We have successfully completed multiple projects in the past. I highly recommend CroCoder - their team is exceptional and they will offer you outstanding support for your projects. I look forward to future collaborations with CroCoder! diff --git a/apps/website/src/content/testimonials/2paul-jeszensky.md b/apps/website/src/content/testimonials/2paul-jeszensky.md index 4247c532..8d3eb39b 100644 --- a/apps/website/src/content/testimonials/2paul-jeszensky.md +++ b/apps/website/src/content/testimonials/2paul-jeszensky.md @@ -1,7 +1,8 @@ --- imageUrl: "/Paul-Jeszenszky.png" name: "Paul Jeszenszky" -title: "Submix co-founder & CEO" +title: "co-founder & CEO" +company: "Submix" --- We have found the perfect extension of our team with CroCoder. We operate as one team, celebrating our wins and working through the challenges together. They “own” the roadmap, deadlines and outcomes with us - from the ideation and direction stages through to post-launch optimization. diff --git a/apps/website/src/content/testimonials/3michele.md b/apps/website/src/content/testimonials/3michele.md index 53ed6950..6071bd6e 100644 --- a/apps/website/src/content/testimonials/3michele.md +++ b/apps/website/src/content/testimonials/3michele.md @@ -1,7 +1,8 @@ --- imageUrl: "/michele-rattotti.png" name: "Michele Rattotti" -title: "4evergreen Project Manager" +title: "Project Manager" +company: "4evergreen" --- We were impressed by the proactive attitude [of CroCoder] and capacity to turn theory into practice. Their support and assistance was very timely and precise, always followed by concrete implementing steps. The small team has a strong multidisciplinary background and proved a good attitude to work in team with other consultants From 8c89d2b8cf5b0f2f43507e7f12d3480da44fec9b Mon Sep 17 00:00:00 2001 From: ivke995 Date: Tue, 18 Feb 2025 12:13:36 +0100 Subject: [PATCH 2/2] fix width of cards --- apps/website/src/components/testimonial.astro | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/apps/website/src/components/testimonial.astro b/apps/website/src/components/testimonial.astro index eb4886a6..288369f9 100644 --- a/apps/website/src/components/testimonial.astro +++ b/apps/website/src/components/testimonial.astro @@ -31,15 +31,20 @@ for (const testimonial of testimonialCollections) {
{ testimonials.map(({ name, content, title, imageUrl, company }) => ( -
+

-

- +
))