Compare commits

..

3 Commits

Author SHA1 Message Date
3c5e28d328 Update src/app/page.tsx 2026-05-15 17:39:51 +00:00
8f57187b3c Merge version_49 into main
Merge version_49 into main
2026-05-15 17:38:14 +00:00
0e1f6a2ec9 Merge version_49 into main
Merge version_49 into main
2026-05-15 17:37:50 +00:00

View File

@@ -10,7 +10,7 @@ import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import FooterBase from "@/components/sections/footer/FooterBase";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
export default function WebAgency2Page() {
@@ -76,15 +76,19 @@ export default function WebAgency2Page() {
/>
</div>
<div id="testimonials">
<TestimonialCardTen
<TestimonialCardSix
title="Témoignages Clients"
description="Ce que nos clients disent de notre expertise."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
topMarqueeDirection="left"
speed={30}
testimonials={[
{ id: "t1", title: "Excellent", quote: "Une transformation totale de notre identité visuelle. Résultat sublime.", name: "Sophie L.", role: "Fondatrice" },
{ id: "t2", title: "Rapide", quote: "Professionnalisme et rapidité au rendez-vous. Je recommande vivement.", name: "Marc P.", role: "Manager" },
{ id: "t3", title: "Efficace", quote: "Le SEO a clairement fait décoller nos ventes en quelques mois.", name: "Julie M.", role: "Directrice" }
{ id: "t1", name: "Sophie L.", handle: "@sophie", testimonial: "Une transformation totale de notre identité visuelle. Résultat sublime." },
{ id: "t2", name: "Marc P.", handle: "@marc", testimonial: "Professionnalisme et rapidité au rendez-vous. Je recommande vivement." },
{ id: "t3", name: "Julie M.", handle: "@julie", testimonial: "Le SEO a clairement fait décoller nos ventes en quelques mois." },
{ id: "t4", name: "Lucas D.", handle: "@lucas", testimonial: "Une équipe de choc pour des résultats concrets." }
]}
/>
</div>
@@ -164,4 +168,4 @@ export default function WebAgency2Page() {
</ReactLenis>
</ThemeProvider>
);
}
}