2 Commits

Author SHA1 Message Date
2963060e62 Update src/app/page.tsx 2026-04-24 16:44:51 +00:00
d1d679314d Merge version_5 into main
Merge version_5 into main
2026-04-24 16:41:38 +00:00

View File

@@ -12,6 +12,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Award, Check, Clock, MessageSquare, ThumbsUp, Users } from "lucide-react";
export default function LandingPage() {
@@ -71,6 +72,25 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
title="What Our Clients Say"
description="Hear from Brazilians who have transformed their lives in the UK with our support."
testimonials={[
{ id: "t1", name: "Ana Silva", role: "Accountant", company: "London Finance Group", rating: 5 },
{ id: "t2", name: "Pedro Santos", role: "Construction Manager", company: "BuildMax", rating: 5 }
]}
kpiItems={[
{ value: "100+", label: "Situations Resolved" },
{ value: "99%", label: "Satisfied Clients" },
{ value: "24/7", label: "Support Available" }
]}
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<MetricCardOne
animationType="slide-up"
@@ -195,4 +215,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}