Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-04-05 23:23:20 +00:00

View File

@@ -4,11 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Sparkles, BarChart3, Target, CheckCircle2 } from "lucide-react";
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import MediaAbout from '@/components/sections/about/MediaAbout';
import AboutMetric from '@/components/sections/about/AboutMetric';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
export default function LandingPage() {
@@ -39,41 +39,31 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardDashboard
<HeroBillboardTestimonial
title="SCALE YOUR CREATIVE REVENUE TO THE STRATOSPHERE"
description="I help elite creative strategists engineer high-ticket revenue machines. Stop relying on luck; start scaling your enterprise with precision systems."
background={{ variant: "sparkles-gradient" }}
tag="NEW: 2025 REVENUE ENGINE"
buttons={[{ text: "Book Strategy Call", href: "#contact" }]}
dashboard={{
title: "Revenue Growth",
stats: [
{ title: "Monthly Revenue", titleMobile: "MRR", values: [15000, 25000, 45000], valuePrefix: "$", description: "Growth over Q1" },
{ title: "Client Pipeline", titleMobile: "Leads", values: [12, 34, 88], description: "High-intent inbound" },
{ title: "Conversion Rate", titleMobile: "CVR", values: [2, 5, 12], description: "Discovery call conversion" }
],
logoIcon: Sparkles,
sidebarItems: [{ icon: Target, active: true }, { icon: BarChart3 }],
buttons: [{ text: "Export Report", onClick: () => console.log("Export") }],
listItems: [{ icon: CheckCircle2, title: "Funnel Optimization", status: "Complete" }],
imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-with-blue-lights-visual-effects_23-2149419486.jpg"
}}
imageSrc="http://img.b2bpic.net/free-photo/man-portrait-with-blue-lights-visual-effects_23-2149419486.jpg"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
<AboutMetric
title="The Strategic Advantage"
description="True scale requires moving beyond the 'content hamster wheel.' I architect systems that bridge the gap between creative excellence and high-ticket predictability."
imageSrc="http://img.b2bpic.net/free-photo/minimalist-black-white-office-desk-with-stationery_9975-133066.jpg"
buttons={[{ text: "See My System", href: "#features" }]}
metrics={[
{ icon: Target, label: "System Efficiency", value: "300%" },
{ icon: BarChart3, label: "Revenue Growth", value: "10x" },
{ icon: CheckCircle2, label: "High-Ticket Conversion", value: "40%" }
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="features" data-section="features">
<FeatureCardSeven
animationType="blur-reveal"
<FeatureCardEight
title="Core Systems for Revenue"
description="Proven systems to scale your creative agency's revenue model."
textboxLayout="split"
@@ -118,4 +108,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}