Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
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 HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
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";
|
import { Award, Check, Clock, MessageSquare, ThumbsUp, Users } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -19,8 +21,8 @@ export default function LandingPage() {
|
|||||||
defaultButtonVariant="expand-hover"
|
defaultButtonVariant="expand-hover"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="mediumLarge"
|
contentWidth="medium"
|
||||||
sizing="largeSmall"
|
sizing="medium"
|
||||||
background="aurora"
|
background="aurora"
|
||||||
cardStyle="inset"
|
cardStyle="inset"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
@@ -70,6 +72,25 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="how-it-works" data-section="how-it-works">
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -137,6 +158,21 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
@@ -151,33 +187,16 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterBaseReveal
|
||||||
logoText="Elite Lingo Brazil"
|
logoText=""
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Support", items: [{ label: "Call Support", href: "#services" }, { label: "Immigration Help", href: "#services" }, { label: "Live Video", href: "#services" }] },
|
||||||
title: "Services", items: [
|
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] },
|
||||||
{ label: "Call Support", href: "#services" },
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
||||||
{ 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: "#" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 Elite Lingo Brazil. All Rights Reserved."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user