11 Commits

Author SHA1 Message Date
31142bbb32 Update src/app/page.tsx 2026-04-24 16:48:47 +00:00
4f932fc71b Merge version_7 into main
Merge version_7 into main
2026-04-24 16:47:02 +00:00
ba38b56e0c Update src/app/page.tsx 2026-04-24 16:46:59 +00:00
adb5b81741 Merge version_6 into main
Merge version_6 into main
2026-04-24 16:44:57 +00:00
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
62d7a05f89 Update src/app/page.tsx 2026-04-24 16:41:34 +00:00
6a5331c5a9 Merge version_4 into main
Merge version_4 into main
2026-04-24 16:13:30 +00:00
d5b55534b5 Update src/app/page.tsx 2026-04-24 16:13:26 +00:00
c50bac7c50 Merge version_3 into main
Merge version_3 into main
2026-04-24 16:00:15 +00:00
660bbeeb0c Merge version_3 into main
Merge version_3 into main
2026-04-24 15:59:46 +00:00

View File

@@ -5,13 +5,14 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
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() {
@@ -20,8 +21,8 @@ export default function LandingPage() {
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmall"
contentWidth="medium"
sizing="medium"
background="aurora"
cardStyle="inset"
primaryButtonStyle="gradient"
@@ -71,6 +72,28 @@ 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}
gridClassName="gap-4"
carouselClassName="gap-2"
cardClassName="p-4"
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<MetricCardOne
animationType="slide-up"
@@ -167,30 +190,13 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Elite Lingo Brazil"
<FooterBaseReveal
logoText=""
columns={[
{
title: "Services", items: [
{ label: "Call Support", href: "#services" },
{ label: "Immigration Help", href: "#services" },
{ label: "Live Video Interpretation", href: "#services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
{ title: "Support", items: [{ label: "Call Support", href: "#services" }, { label: "Immigration Help", href: "#services" }, { label: "Live Video", href: "#services" }] },
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
copyrightText="© 2025 Elite Lingo Brazil. All Rights Reserved."
/>
</div>
</ReactLenis>