Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e7569752b | |||
| f8f159405c | |||
| 9aef1a2b6a | |||
| 19f3ecb3c8 | |||
| 4e0e644a2d | |||
| 1c1dd7e2bb |
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
@@ -10,6 +10,7 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Brain, CheckCircle, HelpCircle, Sparkles, Star, Target, TrendingUp } from 'lucide-react';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -41,25 +42,30 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Unlock Your Leadership Potential"
|
||||
description="Elevate your executive presence and drive business growth with tailored coaching solutions."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
<HeroSplitDualMedia
|
||||
title="Transform Your Business with Proven Strategies"
|
||||
description="I help entrepreneurs and executives unlock their full potential and build thriving businesses through personalized coaching and strategic guidance."
|
||||
tag="Executive Coaching"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/happy-workers-holding-laptop_1098-4100.jpg", imageAlt: "Business coaching session"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Business growth and success"
|
||||
}
|
||||
]}
|
||||
rating={5}
|
||||
ratingText="Rated by 50+ Satisfied Clients"
|
||||
buttons={[
|
||||
{ label: "Schedule Free Consultation", href: "#contact", dataWebildId: "btn_consultation" },
|
||||
{ label: "Learn More", href: "#features", dataWebildId: "btn_learn_more" }
|
||||
{ text: "Schedule Free Consultation", href: "#contact" },
|
||||
{ text: "Learn More", href: "#features" }
|
||||
]}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg"
|
||||
imageAlt="Executive coaching session"
|
||||
buttonAnimation="slide-up"
|
||||
mediaAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930890.jpg", alt: "Client testimonial" },
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918947.jpg", alt: "Client testimonial" },
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930734.jpg", alt: "Client testimonial" }
|
||||
]}
|
||||
marqueeSpeed={2}
|
||||
showMarqueeCard={true}
|
||||
ariaLabel="Executive coaching hero section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -268,6 +274,29 @@ export default function LandingPage() {
|
||||
ariaLabel="Site footer"
|
||||
/>
|
||||
</div>
|
||||
<div id="teamcardone" data-section="teamcardone">
|
||||
<TeamCardOne
|
||||
members={[
|
||||
{ id: "1", name: "John Doe", role: "Executive Coach", imageSrc: "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg" },
|
||||
{ id: "2", name: "Jane Smith", role: "Senior Consultant", imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930890.jpg" },
|
||||
{ id: "3", name: "Emily Johnson", role: "Leadership Trainer", imageSrc: "https://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918947.jpg" }
|
||||
]}
|
||||
carouselMode="buttons"
|
||||
gridVariant="grid"
|
||||
animationType="slide"
|
||||
title="Meet Our Team"
|
||||
description="Our team of expert coaches and consultants are dedicated to helping you achieve your business goals."
|
||||
tag="Expertise"
|
||||
buttons={[
|
||||
{ label: "Learn More", href: "#about", dataWebildId: "team_card_one_button_1" },
|
||||
{ label: "Contact Us", href: "#contact", dataWebildId: "team_card_one_button_2" }
|
||||
]}
|
||||
textboxLayout="left"
|
||||
useInvertedBackground="none"
|
||||
className="mb-10"
|
||||
/>
|
||||
</div>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user