Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-04-17 10:07:04 +00:00

View File

@@ -6,13 +6,12 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Clock, DollarSign, ShieldCheck } from "lucide-react";
import { Clock, DollarSign, ShieldCheck, BarChart3, Search, LayoutDashboard, Settings } from "lucide-react";
export default function LandingPage() {
return (
@@ -40,18 +39,23 @@ export default function LandingPage() {
{ name: "Contact", id: "#contact" },
]}
brandName="PROVA"
button={{
text: "Get Started", href: "#contact"}}
button={{ text: "Get Started", href: "#contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboard
background={{ variant: "radial-gradient" }}
title="Revenue Experimentation System"
description="Accelerate your business growth with data-driven 30-day experiment cycles. Stop guessing and start scaling with precision."
buttons={[{ text: "Explore System", href: "#about" }, { text: "Get Started", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/abstract-dark-background-with-glowing-lines_23-2148816654.jpg"
<HeroBillboardDashboard
background={{ variant: "sparkles-gradient" }}
title="Find your next profitable revenue stream in 30 days"
description="We test real market opportunities for your business and show you what actually works."
buttons={[{ text: "Get Started", href: "#contact" }, { text: "See How It Works", href: "#about" }]}
dashboard={{
title: "PROVA Analytics", stats: [{ title: "Monthly Growth", values: [12, 18, 25], description: "Revenue acceleration" }],
logoIcon: BarChart3,
sidebarItems: [{ icon: LayoutDashboard, active: true }, { icon: Search }, { icon: Settings }],
listItems: [{ icon: Clock, title: "Cycle 1: Validation", status: "Completed" }, { icon: ShieldCheck, title: "Cycle 2: Scaling", status: "Active" }],
imageSrc: "http://img.b2bpic.net/free-photo/abstract-dark-background-with-glowing-lines_23-2148816654.jpg"
}}
/>
</div>
@@ -157,4 +161,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}