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..288369f9 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,
});
}
---
@@ -30,15 +31,20 @@ for (const testimonial of testimonialCollections) {