24 Commits

Author SHA1 Message Date
0e039c0c12 Update src/app/page.tsx 2026-04-24 16:50:56 +00:00
3d3ed6f2a7 Merge version_9 into main
Merge version_9 into main
2026-04-24 16:50:15 +00:00
200dd0a9bb Update src/app/page.tsx 2026-04-24 16:50:12 +00:00
91bc91e40c Merge version_8 into main
Merge version_8 into main
2026-04-24 16:48:50 +00:00
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
edfe2b42b1 Update src/app/page.tsx 2026-04-24 16:00:12 +00:00
660bbeeb0c Merge version_3 into main
Merge version_3 into main
2026-04-24 15:59:46 +00:00
bb6b8cdbaa Update src/app/page.tsx 2026-04-24 15:59:43 +00:00
804620cd90 Switch to version 2: modified src/app/page.tsx 2026-04-24 15:15:10 +00:00
3a28ea9d7b Switch to version 1: modified src/app/page.tsx 2026-04-24 15:14:59 +00:00
17bbc0c46c Merge version_2 into main
Merge version_2 into main
2026-04-24 15:05:56 +00:00
d5949b145e Merge version_2 into main
Merge version_2 into main
2026-04-24 14:58:27 +00:00
98d1b9197f Merge version_2 into main
Merge version_2 into main
2026-04-24 14:49:14 +00:00
20854e4696 Merge version_2 into main
Merge version_2 into main
2026-04-24 14:29:12 +00:00
5198fbb902 Merge version_2 into main
Merge version_2 into main
2026-04-24 14:17:54 +00:00

View File

@@ -5,12 +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() {
@@ -19,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"
@@ -40,7 +42,7 @@ export default function LandingPage() {
/>
</div>
<div id="hero" data-section="hero">
<div id="hero" data-section="hero" className="py-0">
<HeroBillboardScroll
background={{ variant: "plain" }}
title="Speak English with confidence in the UK"
@@ -53,7 +55,7 @@ export default function LandingPage() {
/>
</div>
<div id="services" data-section="services">
<div id="services" data-section="services" className="py-4">
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="split"
@@ -70,7 +72,30 @@ export default function LandingPage() {
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<div id="testimonials" data-section="testimonials" className="py-4">
<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-2"
carouselClassName="gap-0"
cardClassName="p-2"
className="py-4"
/>
</div>
<div id="how-it-works" data-section="how-it-works" className="py-4">
<MetricCardOne
animationType="slide-up"
textboxLayout="split"
@@ -86,7 +111,7 @@ export default function LandingPage() {
/>
</div>
<div id="trust" data-section="trust">
<div id="trust" data-section="trust" className="py-4">
<SocialProofOne
textboxLayout="split"
useInvertedBackground={true}
@@ -96,7 +121,7 @@ export default function LandingPage() {
/>
</div>
<div id="about" data-section="about">
<div id="about" data-section="about" className="py-4">
<TextSplitAbout
useInvertedBackground={false}
title="Built for the Community"
@@ -106,7 +131,7 @@ export default function LandingPage() {
/>
</div>
<div id="stats" data-section="stats">
<div id="stats" data-section="stats" className="py-4">
<MetricCardOne
animationType="slide-up"
textboxLayout="split"
@@ -122,7 +147,7 @@ export default function LandingPage() {
/>
</div>
<div id="faq" data-section="faq">
<div id="faq" data-section="faq" className="py-4">
<FaqBase
textboxLayout="split"
useInvertedBackground={false}
@@ -137,7 +162,22 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<div id="contact-details" data-section="contact-details" className="py-4">
<ContactCenter
tag="Contact Us"
title="Reach out to Elite Lingo Brazil"
description="We're here to help you navigate your life in the UK. Contact us directly via phone or email for quick support."
background={{ variant: "plain" }}
useInvertedBackground={false}
onSubmit={(email) => console.log(email)}
/>
<div className="flex flex-col gap-2 text-center p-4 bg-card rounded-xl">
<p className="font-bold">Phone: 07563282627</p>
<p className="font-bold">Email: eliteLingoBrazil@hotmail.com</p>
</div>
</div>
<div id="contact" data-section="contact" className="py-4">
<ContactSplit
useInvertedBackground={true}
background={{ variant: "plain" }}
@@ -151,30 +191,13 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
<FooterBaseReveal
logoText="Elite Lingo Brazil"
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>