Merge version_44 into main

Merge version_44 into main
This commit was merged in pull request #58.
This commit is contained in:
2026-05-15 17:28:27 +00:00

View File

@@ -10,6 +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 TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
export default function WebAgency2Page() {
@@ -46,12 +47,27 @@ export default function WebAgency2Page() {
tagIcon={Sparkles}
tagAnimation="slide-up"
testimonials={[
{ name: "Maria Santos", handle: "@luxuriatravel", testimonial: "Un travail exceptionnel, une équipe réactive et des résultats au-delà de mes espérances.", rating: 5 },
{ name: "John Doe", handle: "@johndoe", testimonial: "Le partenaire idéal pour booster notre visibilité en ligne.", rating: 5 },
{ id: "1", name: "Maria Santos", role: "Travel Blogger", company: "@luxuriatravel", rating: 5 },
{ id: "2", name: "John Doe", role: "Entrepreneur", company: "@johndoe", rating: 5 },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778862157558-53z96op4.png"
buttons={[{ text: "View Our Projects", href: "#work" }]}
/>
<div id="testimonials">
<TestimonialCardOne
title="Ce qu'ils pensent de nous"
description="Des retours d'expérience authentiques sur notre travail."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
testimonials={[
{ id: "t1", name: "Maria Santos", role: "Travel Blogger", company: "@luxuriatravel", rating: 5 },
{ id: "t2", name: "John Doe", role: "Entrepreneur", company: "@johndoe", rating: 5 },
{ id: "t3", name: "Jane Smith", role: "Director", company: "@techcorp", rating: 5 }
]}
/>
</div>
<div id="services">
<FeatureBento
title="Nos Services"
@@ -150,4 +166,4 @@ export default function WebAgency2Page() {
</ReactLenis>
</ThemeProvider>
);
}
}