diff --git a/src/app/page.tsx b/src/app/page.tsx index 24d5559..2848e20 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -96,7 +96,10 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} - testimonials={[]} + testimonials={[ + { id: "1", name: "Alice Dupont", role: "CEO", company: "TechCorp", rating: 5 }, + { id: "2", name: "Marc Lefebvre", role: "Manager", company: "DesignStudio", rating: 5 } + ]} kpiItems={[{value: "100+", label: "Clients"}, {value: "500+", label: "Tasks"}, {value: "10+", label: "Years"}]} title="Voices of our community." description="See why industry leaders trust us with their vision." @@ -106,7 +109,11 @@ export default function LandingPage() {