Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 31142bbb32 | |||
| 4f932fc71b | |||
| ba38b56e0c | |||
| adb5b81741 | |||
| 2963060e62 | |||
| d1d679314d | |||
| 62d7a05f89 | |||
| 6a5331c5a9 | |||
| d5b55534b5 | |||
| c50bac7c50 | |||
| edfe2b42b1 | |||
| 660bbeeb0c | |||
| bb6b8cdbaa | |||
| 804620cd90 | |||
| 3a28ea9d7b | |||
| 17bbc0c46c | |||
| d5949b145e | |||
| 98d1b9197f | |||
| 20854e4696 | |||
| 5198fbb902 |
@@ -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"
|
||||
@@ -70,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"
|
||||
@@ -137,6 +161,21 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-details" data-section="contact-details">
|
||||
<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-4 text-center p-8 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">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
@@ -151,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>
|
||||
|
||||
Reference in New Issue
Block a user