1 Commits

Author SHA1 Message Date
0b787d0bd0 Bob AI: [Block: hero-billboard-carousel|Hero Billboard Car... 2026-02-18 14:26:42 +02:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
@@ -42,63 +42,31 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardDashboard
tag="Transformative Coaching"
tagIcon={Sparkles}
title="Unlock Your Full Potential"
description="Experience personalized business coaching designed to accelerate your growth, build leadership confidence, and create lasting transformation."
buttons={[
{ text: "Schedule Free Consultation", href: "contact" },
{ text: "Explore Services", href: "services" }
]}
background={{ variant: "radial-gradient" }}
dashboard={{
title: "Your Growth Dashboard", logoIcon: TrendingUp,
imageSrc: "https://img.b2bpic.net/free-photo/mid-adult-ceo-giving-presentation-his-team-office-asks-one-his-colleagues-opinion_637285-985.jpg", imageAlt: "business coaching professional mentor growth mindset strategic guidance", searchPlaceholder: "Track your progress", buttons: [
{ text: "View Progress", href: "#" },
{ text: "Schedule Session", href: "#" }
],
sidebarItems: [
{ icon: BarChart3 },
{ icon: Target },
{ icon: Users }
],
stats: [
{
title: "Client Success Rate", values: [78, 82, 89],
valueSuffix: "%", description: "Achieving goals"
},
{
title: "Growth Average", values: [24, 32, 45],
valueSuffix: "%", description: "Performance increase"
},
{
title: "Satisfaction Score", values: [92, 94, 96],
valueSuffix: "%", description: "Client satisfaction"
}
],
chartTitle: "Progress Over Time", chartData: [
{ value: 60 },
{ value: 70 },
{ value: 80 },
{ value: 85 },
{ value: 90 }
],
listTitle: "Recent Sessions", listItems: [
{
icon: CheckCircle,
title: "Strategic Planning Workshop", status: "Completed"
},
{
icon: Target,
title: "Leadership Development Session", status: "Completed"
},
{
icon: Users,
title: "Team Building Coaching", status: "Scheduled"
}
]
}}
<HeroBillboardCarousel
title="Unlock Your Full Potential"
description="Experience personalized business coaching designed to accelerate your growth, build leadership confidence, and create lasting transformation."
background={{ variant: "radial-gradient" }}
tag="Transformative Coaching"
buttons={[
{ text: "Schedule Free Consultation", href: "contact", dataWebildId: "btn_consultation" },
{ text: "Explore Services", href: "services", dataWebildId: "btn_services" }
]}
mediaItems={[
{ imageSrc: "https://img.b2bpic.net/free-photo/beautiful-landscape-with-mountains_23-2151151078.jpg", imageAlt: "Nature-inspired coaching session" },
{ imageSrc: "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg", imageAlt: "Modern business coaching environment" },
{ imageSrc: "https://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918947.jpg", imageAlt: "Strategic business growth" }
]}
ariaLabel="Hero section for GrowthPath Coaching"
className="bg-green-50"
containerClassName="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"
textBoxClassName="text-center"
titleClassName="text-4xl font-extrabold tracking-tight text-green-900 sm:text-5xl md:text-6xl"
descriptionClassName="mt-3 max-w-md mx-auto text-base text-gray-500 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl"
tagClassName="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-green-100 text-green-800"
buttonContainerClassName="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start"
buttonClassName="inline-flex items-center px-4 py-2 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-green-600 hover:bg-green-700"
buttonTextClassName="ml-3"
mediaWrapperClassName="mt-10"
/>
</div>