1 Commits

Author SHA1 Message Date
2e0aac7df6 Bob AI: [Block: hero-billboard-dashboard|Hero Billboard Da... 2026-02-18 13:28:22 +02:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
@@ -42,40 +42,48 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="Transform Your Potential Into Performance"
description="Strategic business coaching designed to unlock your growth, build unstoppable confidence, and create lasting transformation in your leadership and career."
tag="Business Transformation"
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Start Your Journey", href: "#contact" },
{ text: "Learn More", href: "#about" }
]}
buttonAnimation="slide-up"
<HeroBillboardDashboard
title="Elevate Your Coaching with Insights"
description="Unlock growth and transformation with our comprehensive dashboard. Track progress, manage clients, and gain valuable insights to elevate your coaching practice."
background={{ variant: "radial-gradient" }}
carouselItems={[
{
id: "1", imageSrc: "https://img.b2bpic.net/free-photo/selective-focus-businesswoman-asking-question-branstorming_482257-8167.jpg", imageAlt: "Business coach in mentoring session"
},
{
id: "2", imageSrc: "https://img.b2bpic.net/free-photo/group-entrepreneurs-cooperating-while-creating-mind-map-whiteboard-office-focus-is-businesswoman-writing-adhesive-notes_637285-7036.jpg", imageAlt: "Team collaboration and growth"
},
{
id: "3", imageSrc: "https://img.b2bpic.net/free-photo/female-team-leader-business-meeting-office_1268-21435.jpg", imageAlt: "Strategic business planning"
},
{
id: "4", imageSrc: "https://img.b2bpic.net/free-photo/business-partners-meeting-share-details-exchange-impressions_482257-104799.jpg", imageAlt: "Personal transformation journey"
},
{
id: "5", imageSrc: "https://img.b2bpic.net/free-photo/general-director-making-important-presentation_482257-115944.jpg", imageAlt: "Professional success and achievement"
},
{
id: "6", imageSrc: "https://img.b2bpic.net/free-photo/young-businessman-presenting-front-leadership-conference-room_482257-31236.jpg", imageAlt: "Comprehensive coaching program"
}
tag="Business Coaching"
buttons={[
{ text: "Start Coaching", href: "#start", dataWebildId: "button_start_coaching" },
{ text: "Learn More", href: "#about", dataWebildId: "button_learn_more" }
]}
autoPlay={true}
autoPlayInterval={5000}
dashboard={{
title: "Your Coaching Dashboard",
stats: [
{ label: "Clients", value: "120+" },
{ label: "Sessions", value: "500+" },
{ label: "Success Stories", value: "85+" }
],
logoIcon: null,
sidebarItems: [
{ label: "Dashboard", href: "#dashboard", dataWebildId: "sidebar_dashboard" },
{ label: "Clients", href: "#clients", dataWebildId: "sidebar_clients" },
{ label: "Reports", href: "#reports", dataWebildId: "sidebar_reports" }
],
buttons: [
{ text: "Add Client", href: "#add-client", dataWebildId: "button_add_client" },
{ text: "Generate Report", href: "#generate-report", dataWebildId: "button_generate_report" }
],
chartTitle: "Monthly Sessions",
chartData: [
{ label: "Jan", value: 40 },
{ label: "Feb", value: 50 },
{ label: "Mar", value: 60 },
{ label: "Apr", value: 70 }
],
listTitle: "Recent Success Stories",
listItems: [
{ label: "John Doe", description: "Transformed his leadership style and increased team productivity by 30%." },
{ label: "Jane Smith", description: "Boosted her confidence and secured a new leadership role." },
{ label: "Sam Johnson", description: "Achieved personal and professional growth, leading to a successful business venture." }
],
imageSrc: "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg",
imageAlt: "Abstract luxury gradient blue background"
}}
/>
</div>