Merge version_1 into main #5

Merged
bender merged 1 commits from version_1 into main 2026-03-13 00:36:17 +00:00

View File

@@ -9,7 +9,10 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Zap, TrendingUp, CheckCircle, Lightbulb, Users, Cog, BarChart3, Rocket, Mail, Sparkles, HelpCircle, Heart, Check, Lock } from 'lucide-react';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Zap, TrendingUp, CheckCircle, Lightbulb, Users, Cog, BarChart3, Rocket, Mail, Sparkles, HelpCircle, Heart, Crown } from 'lucide-react';
export default function HomePage() {
const navItems = [
@@ -49,7 +52,7 @@ export default function HomePage() {
<HeroSplitKpi
title="Turn Your Expertise Into Recurring Revenue"
description="Build a profitable digital business without the overhead. Choose from memberships, digital products, affiliate partnerships, or advertising—all managed in one place."
background={{ variant: "glowing-orb" }}
background={{ variant: "blurBottom" }}
kpis={[
{ value: "4x", label: "Average Revenue Growth" },
{ value: "10+", label: "Monetization Methods" },
@@ -157,7 +160,7 @@ export default function HomePage() {
},
items: [
{ icon: Cog, text: "Drag-and-drop site builder" },
{ icon: Lock, text: "Secure payment processing" },
{ icon: CheckCircle, text: "Secure payment processing" },
{ icon: BarChart3, text: "Analytics dashboard included" },
],
reverse: true,
@@ -232,7 +235,7 @@ export default function HomePage() {
],
},
{
id: "2", badge: "Professional", badgeIcon: Sparkles,
id: "2", badge: "Professional", badgeIcon: Crown,
price: "$99/mo", subtitle: "Best for growing businesses", buttons: [
{ text: "Get Started", href: "#contact" },
{ text: "View Details", href: "#" },
@@ -242,7 +245,7 @@ export default function HomePage() {
],
},
{
id: "3", badge: "Enterprise", badgeIcon: Heart,
id: "3", badge: "Enterprise", badgeIcon: Sparkles,
price: "Custom", subtitle: "For agencies and teams", buttons: [
{ text: "Contact Sales", href: "#contact" },
{ text: "Learn More", href: "#" },
@@ -311,6 +314,94 @@ export default function HomePage() {
showCard={true}
/>
</div>
{/* FAQ Section */}
<div id="faq" data-section="faq">
<FaqDouble
title="Frequently Asked Questions"
description="Everything you need to know to get started and succeed with our platform."
tag="Support"
tagIcon={HelpCircle}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqsAnimation="slide-up"
faqs={[
{
id: "1", title: "How quickly can I start generating revenue?", content: "Most users launch their first revenue stream within 24 hours. Our setup wizard guides you through everything, and you can go live as soon as your payment gateway is configured."
},
{
id: "2", title: "Can I use multiple monetization methods at once?", content: "Yes! That's one of our biggest advantages. You can run memberships, sell digital products, and earn affiliate commissions simultaneously on the same platform."
},
{
id: "3", title: "What are your payment processing fees?", content: "We charge 2.9% + $0.30 per transaction through Stripe. That's industry standard and transparent—no hidden fees or surprise charges."
},
{
id: "4", title: "Do you handle customer support?", content: "Your customers contact you directly. We provide the tools and infrastructure, but you maintain your customer relationships and brand. We offer 24/7 support for platform issues."
},
{
id: "5", title: "Can I export my customer data?", content: "Absolutely. You own all your data. Export customer lists, transaction history, and analytics in CSV or JSON format anytime, with no restrictions."
},
{
id: "6", title: "What if I need custom features?", content: "Our Enterprise plan includes API access for custom integrations and our team can discuss white-label or specialized development solutions for your needs."
}
]}
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactSplit
tag="Get Started"
title="Ready to Build Your Revenue Stream?"
description="Join us and discover how to transform your expertise into sustainable, recurring income. Start your free trial today and earn your first revenue within days."
background={{ variant: "blurBottom" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/laptop-with-many-envelopes_1134-191.jpg"
imageAlt="Newsletter signup"
mediaPosition="right"
mediaAnimation="slide-up"
inputPlaceholder="Enter your email address"
buttonText="Start Free Trial"
termsText="By signing up, you agree to our Terms of Service and Privacy Policy. No credit card required."
/>
</div>
{/* Footer Section */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/business-people-working-office-with-digital-tablet_1301-6569.jpg"
imageAlt="Revenue Generation Platform"
logoText="RevenueLab"
copyrightText="© 2025 RevenueLab. All rights reserved."
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Security", href: "#" },
{ label: "Roadmap", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Status", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}