Compare commits
22 Commits
version_6
...
version_14
| Author | SHA1 | Date | |
|---|---|---|---|
| d603ed215d | |||
| fec6f90de3 | |||
| d3adcf23fc | |||
| cd1392c8d3 | |||
| 0fcda45fea | |||
| 14fcd33a68 | |||
| e6cfa517aa | |||
| 2cc0fc8224 | |||
| 540bf23e0b | |||
| fee209856b | |||
| e31dd836e7 | |||
| af90fadf44 | |||
| 5a6b3d9f5b | |||
| a0a66bf64a | |||
| 518a60f9d5 | |||
| f3a2b7e746 | |||
| da3c4e3369 | |||
| 10debe3577 | |||
| f694b35f15 | |||
| 33749123d1 | |||
| 6609458308 | |||
| f814c65737 |
134
src/app/page.tsx
134
src/app/page.tsx
@@ -6,18 +6,18 @@ import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { Zap, TrendingUp, Phone, Calendar, Users, Heart, Rocket, Sparkles, Crown } from "lucide-react";
|
||||
import { Zap, TrendingUp, Phone, Calendar, Users, Heart, Rocket, Sparkles, Crown, Briefcase, BarChart3, Target } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "How It Works", id: "how-it-works" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "About Us", id: "/about-us" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -42,15 +42,15 @@ export default function HomePage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
title="Transform Your Service Business with Predictable Lead Flow"
|
||||
description="Navo Lab delivers qualified, phone-ready leads for HVAC, plumbing, electrical, roofing, and construction companies using AI-powered targeting and proven strategies. Get your free digital audit today."
|
||||
tag="AI-Powered Lead Generation"
|
||||
title="We Make Your Phone Ring"
|
||||
description="Navo Lab is the growth engine for service businesses. We drive rankings, leads, and revenue through SEO, lead funnel optimization, and strategic content that compounds over time. No vanity metrics. Just results."
|
||||
tag="Digital Marketing for Local Businesses"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "glowing-orb" }}
|
||||
buttons={[
|
||||
{ text: "Get Your Free Audit", href: "/contact" },
|
||||
{ text: "Watch Demo", href: "https://www.youtube.com" }
|
||||
{ text: "Book a Call", href: "/contact" },
|
||||
{ text: "See How It Works", href: "#how-it-works" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/a-modern-ai-powered-lead-generation-dash-1772481633855-c10db891.png"
|
||||
@@ -64,21 +64,21 @@ export default function HomePage() {
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FeatureCardMedia
|
||||
title="Our Proven 4-Step Process"
|
||||
description="We turn your lead generation from unpredictable to systematic with a process designed specifically for service businesses"
|
||||
description="Our proven process turns our online presence into a lead-generating machine"
|
||||
tag="Process"
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "step-1", title: "Comprehensive Digital Audit", description: "We analyze your current marketing presence, identify hidden opportunities, and provide a detailed roadmap for improvement. This free audit alone reveals what's working and what's costing you leads.", tag: "Step 1"
|
||||
id: "step-1", title: "Deep Audit", description: "We analyze your online presence and competitors to understand your market positioning, identify gaps in your current strategy, and discover untapped opportunities for lead generation growth.", tag: "Step 1"
|
||||
},
|
||||
{
|
||||
id: "step-2", title: "AI-Powered Targeting Strategy", description: "Our proprietary algorithms identify and reach your ideal customers at exactly the right moment. We focus on high-intent prospects ready to book—not random clicks.", tag: "Step 2"
|
||||
id: "step-2", title: "Build Your Engine", description: "We execute our proven 22-point digital marketing system designed specifically for service businesses. This comprehensive approach covers all channels necessary to generate consistent, qualified leads.", tag: "Step 2"
|
||||
},
|
||||
{
|
||||
id: "step-3", title: "Dedicated Account Management", description: "You get a dedicated strategy team managing your campaigns daily. Monthly calls, weekly reporting, and real-time optimization ensures nothing falls through the cracks.", tag: "Step 3"
|
||||
id: "step-3", title: "Launch and Optimize", description: "Your SEO strategy goes live across all channels. We implement weekly optimization protocols to continuously improve performance, test new strategies, and refine targeting based on real-time data.", tag: "Step 3"
|
||||
},
|
||||
{
|
||||
id: "step-4", title: "Phone-Ready Qualified Leads", description: "Receive consistent, qualified leads delivered to your phone and email. These are decision-makers ready to book appointments—not just inquiries or tire-kickers.", tag: "Step 4"
|
||||
id: "step-4", title: "Your Phone Rings", description: "Your pipeline fills with qualified leads ready to book. We deliver decision-makers actively seeking your services, converting your marketing into real appointments and revenue for your business.", tag: "Step 4"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -89,26 +89,20 @@ export default function HomePage() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardMedia
|
||||
title="Why Service Businesses Trust Navo Lab"
|
||||
description="Built specifically for HVAC, plumbing, electrical, roofing, construction, and service companies. We understand your business because we've worked in it."
|
||||
title="Our Service Delivery Framework"
|
||||
description="The complete systems and strategies we implement for every service business client"
|
||||
features={[
|
||||
{
|
||||
id: "feature-1", title: "Transparent Monthly Reporting", description: "See exactly where every dollar goes and what it generates. We report leads delivered, appointment bookings, and actual ROI. No vanity metrics or misleading numbers—just the truth.", tag: "Transparency", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=2", imageAlt: "Transparent reporting dashboard"
|
||||
id: "feature-1", title: "22-Point Marketing System", description: "Our comprehensive digital infrastructure covering SEO optimization, local citation management, content distribution, lead funnel setup, and performance tracking. Every element works together to generate consistent, qualified leads for your service business.", tag: "Core System"
|
||||
},
|
||||
{
|
||||
id: "feature-2", title: "Dedicated Account Manager", description: "Your account manager understands your business, your goals, and your challenges. They're not just processing orders—they're strategizing to maximize your ROI every single month.", tag: "Support", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-diverse-team-me-1772481633100-b1fe8b6c.png?_wi=1", imageAlt: "Dedicated account manager"
|
||||
id: "feature-2", title: "Strategic Content Package", description: "Proven educational and promotional content developed for your specific service vertical. We create blog posts, video scripts, service guides, and case studies that position you as the expert and drive organic traffic to your business.", tag: "Content Strategy"
|
||||
},
|
||||
{
|
||||
id: "feature-3", title: "AI-Powered Precision Targeting", description: "Advanced machine learning identifies prospects searching for your services right now. We reach them with the right message at the right time, maximizing conversion potential.", tag: "Technology", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=2", imageAlt: "AI targeting technology"
|
||||
id: "feature-3", title: "Local SEO Domination", description: "Complete local search optimization including Google Business Profile management, local citation building, review generation, and location-specific keyword targeting. We get you found when prospects search for your services in your service area.", tag: "Local Visibility"
|
||||
},
|
||||
{
|
||||
id: "feature-4", title: "Multi-Vertical Industry Expertise", description: "We've successfully generated leads for HVAC, plumbing, electrical, roofing, construction, and other service verticals. We know your industry's seasonality, pricing cycles, and booking patterns.", tag: "Expertise", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/confident-service-business-owner-hvac-pl-1772481633162-358c5800.png?_wi=1", imageAlt: "Service business expertise"
|
||||
},
|
||||
{
|
||||
id: "feature-5", title: "Predictable Monthly Lead Pipeline", description: "Stop guessing about next month's leads. With Navo Lab, you plan budgets around consistent, reliable lead flow. Scale your team with confidence knowing leads will arrive.", tag: "Growth", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/close-up-of-smartphone-showing-incoming--1772481632952-a4ba83a2.png?_wi=2", imageAlt: "Predictable lead flow"
|
||||
},
|
||||
{
|
||||
id: "feature-6", title: "Free Digital Audit (No Credit Card Required)", description: "Start risk-free. We'll conduct a comprehensive audit of your current marketing, identify opportunities you're missing, and show you exactly what's possible.", tag: "Offer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/call-to-action-visual-for-free-digital-a-1772481633412-e1dd491a.png?_wi=1", imageAlt: "Free digital audit offer"
|
||||
id: "feature-4", title: "Content Flywheel", description: "Our system that compounds results over time. Strategic content attracts prospects, builds authority, improves SEO rankings, and generates continuous qualified leads month after month. The longer you're with us, the stronger your lead flow becomes.", tag: "Growth Engine"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -119,8 +113,8 @@ export default function HomePage() {
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by 200+ Service Businesses Nationwide"
|
||||
description="From single-location shops to multi-state operations, service businesses across America rely on Navo Lab for consistent, predictable lead flow"
|
||||
title="Trusted by Service Businesses in Florida"
|
||||
description="From single-location shops to multi-state operations, service businesses across Florida rely on Navo Lab for consistent, predictable lead flow"
|
||||
tag="Our Partners"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -142,19 +136,19 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "foundation", badge: "Foundation", price: "$2,000", subtitle: "Perfect for businesses starting their digital lead generation journey", features: [
|
||||
"Qualified leads delivered monthly", "Weekly progress reporting", "Basic AI targeting setup", "Email support", "Monthly strategy review"
|
||||
id: "foundation", badge: "Foundation", price: "$2,000/mo", subtitle: "Perfect for single-location businesses", features: [
|
||||
"GBP optimization", "Local citation building", "Basic SEO setup", "Monthly progress reporting", "Email support"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "growth", badge: "Growth", badgeIcon: Sparkles,
|
||||
price: "$3,500", subtitle: "Most Popular - Ideal for growing service businesses ready to scale", features: [
|
||||
"Consistent qualified leads monthly", "Weekly progress reporting", "Advanced AI targeting", "Dedicated account manager", "Monthly strategy calls", "Detailed metrics dashboard", "Campaign optimization"
|
||||
price: "$3,500/mo", subtitle: "Most Popular - For businesses ready to dominate their local market", features: [
|
||||
"Everything in Foundation", "Full 22-point marketing system", "Strategic content production", "Weekly strategy calls", "Dedicated account manager", "Landing page optimization"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "scale", badge: "Scale", price: "$5,000", subtitle: "Maximum lead volume and priority support for established businesses", features: [
|
||||
"Maximum qualified leads monthly", "Weekly progress reporting", "Advanced AI + custom targeting", "Dedicated account manager + specialist", "Bi-weekly strategy calls", "Detailed metrics dashboard", "Advanced campaign optimization", "Priority support", "Quarterly business reviews"
|
||||
id: "scale", badge: "Scale", price: "$5,000/mo", subtitle: "For businesses ready to own their market across multiple locations", features: [
|
||||
"Everything in Growth", "Multi-location SEO", "Advanced content flywheel", "Bi-weekly strategy calls", "Priority support", "Paid ads management"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -162,19 +156,55 @@ export default function HomePage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Book a Call", href: "/contact" },
|
||||
{ text: "Schedule Call", href: "https://calendly.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<FeatureCardTwentyFive
|
||||
title="Real Businesses. Real Results."
|
||||
description="See how service businesses are generating qualified leads and growing their revenue with Navo Lab's proven approach"
|
||||
tag="Case Studies"
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "HB Design & Engineering", description: "Structural engineering firm centralized their marketing through Navo Lab, generating a high six-figure project opportunity through improved Google visibility. The strategic optimization resulted in over 40x return on their monthly investment in the first quarter alone.", icon: Briefcase,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "data:image/svg+xml,%3Csvg xmlns=?_wi=1'http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%23f0f0f0' width='400' height='300'/%3E%3Ctext x='200' y='150' font-size='24' fill='%23999' text-anchor='middle' dominant-baseline='middle'%3EEngineering Success%3C/text%3E%3C/svg%3E", imageAlt: "Engineering project success"
|
||||
},
|
||||
{
|
||||
imageSrc: "data:image/svg+xml,%3Csvg xmlns=?_wi=2'http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%23f0f0f0' width='400' height='300'/%3E%3Ctext x='200' y='150' font-size='24' fill='%23999' text-anchor='middle' dominant-baseline='middle'%3E40x ROI Growth%3C/text%3E%3C/svg%3E", imageAlt: "40x return on investment"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "The Service Pros", description: "Through strategic educational video content and targeted distribution, The Service Pros achieved 50,000 social media views in their first month—all with zero ad spend. Their organic reach strategy proved that quality content combined with smart positioning drives real engagement and qualified leads.", icon: BarChart3,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "data:image/svg+xml,%3Csvg xmlns=?_wi=3'http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%23f0f0f0' width='400' height='300'/%3E%3Ctext x='200' y='150' font-size='24' fill='%23999' text-anchor='middle' dominant-baseline='middle'%3E50K Social Views%3C/text%3E%3C/svg%3E", imageAlt: "50000 social media views"
|
||||
},
|
||||
{
|
||||
imageSrc: "data:image/svg+xml,%3Csvg xmlns=?_wi=4'http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%23f0f0f0' width='400' height='300'/%3E%3Ctext x='200' y='150' font-size='24' fill='%23999' text-anchor='middle' dominant-baseline='middle'%3EZero Ad Spend%3C/text%3E%3C/svg%3E", imageAlt: "Zero advertising cost"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactCTA
|
||||
tag="Ready to Grow"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Ask Your Phone Ringing?"
|
||||
title="Ready to Make Your Phone Ring?"
|
||||
description="Take the next step toward predictable, qualified leads. Let's discuss how Navo Lab can transform your service business with consistent monthly lead flow."
|
||||
buttons={[
|
||||
{ text: "Book a Call", href: "https://calendly.com" },
|
||||
@@ -186,36 +216,6 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Marcus Johnson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-satisfied-servi-1772481632884-8d16c835.png", imageAlt: "Marcus Johnson"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Sarah Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-smiling-service-1772481632622-3dc24efc.png", imageAlt: "Sarah Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "David Rodriguez", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-business-owner--1772481633083-4ece2c48.png", imageAlt: "David Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Jennifer Blake", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-marketing-manag-1772481632791-b154b4d6.png", imageAlt: "Jennifer Blake"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Tom Wilson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-service-busines-1772481632664-b5b5ddd3.png", imageAlt: "Tom Wilson"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Amanda Roberts", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-business-profes-1772481632529-643b0c2e.png", imageAlt: "Amanda Roberts"
|
||||
}
|
||||
]}
|
||||
cardTitle="Service businesses trust Navo Lab to deliver consistent, qualified leads every single month"
|
||||
cardTag="Customer Success"
|
||||
cardTagIcon={Heart}
|
||||
cardAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get Started Today"
|
||||
@@ -242,4 +242,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,9 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { Zap, Rocket, Sparkles, Crown } from "lucide-react";
|
||||
import { Zap, Sparkles } from "lucide-react";
|
||||
|
||||
export default function PricingPage() {
|
||||
const navItems = [
|
||||
@@ -39,34 +40,32 @@ export default function PricingPage() {
|
||||
|
||||
<div id="pricing-plans" data-section="pricing-plans">
|
||||
<PricingCardOne
|
||||
title="Choose the Plan That Fits Your Business"
|
||||
description="Flexible, transparent pricing with zero hidden fees. Scale up as you grow. Every plan includes dedicated support, detailed reporting, and our proven lead generation process."
|
||||
tag="Investment Tiers"
|
||||
title="Simple, Transparent Investment"
|
||||
description="Monthly retainers. No long-term contracts. We earn your business every month."
|
||||
tag="Simple Pricing"
|
||||
tagAnimation="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "Best for Startups", badgeIcon: Rocket,
|
||||
price: "$2,500", subtitle: "Perfect for businesses just starting their digital lead generation journey", features: [
|
||||
"50-100 qualified leads per month", "Weekly progress reporting", "Basic AI targeting setup", "Email support", "Monthly strategy review call"
|
||||
id: "foundation", badge: "Foundation", price: "$2,000/mo", subtitle: "Perfect for single-location businesses", features: [
|
||||
"GBP optimization", "Local citation building", "Basic SEO setup", "Monthly progress reporting", "Email support"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$5,000", subtitle: "Ideal for growing service businesses ready to scale predictably", features: [
|
||||
"100-200 qualified leads per month", "Weekly progress reporting", "Advanced AI targeting", "Dedicated account manager", "Monthly strategy calls", "Detailed monthly metrics dashboard", "Campaign optimization"
|
||||
id: "growth", badge: "Growth", badgeIcon: Sparkles,
|
||||
price: "$3,500/mo", subtitle: "Most Popular - For businesses ready to dominate their local market", features: [
|
||||
"Everything in Foundation", "Full 22-point marketing system", "Strategic content production", "Weekly strategy calls", "Dedicated account manager", "Landing page optimization"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "Premium Support", badgeIcon: Crown,
|
||||
price: "$10,000", subtitle: "For established businesses demanding maximum results and priority support", features: [
|
||||
"200-400 qualified leads per month", "Weekly progress reporting", "Advanced AI + custom targeting", "Dedicated account manager + specialist", "Bi-weekly strategy calls", "Detailed monthly metrics dashboard", "Advanced campaign optimization", "Priority support (24-48 hour response)", "Quarterly business reviews"
|
||||
id: "scale", badge: "Scale", price: "$5,000/mo", subtitle: "For businesses ready to own their market across multiple locations", features: [
|
||||
"Everything in Growth", "Multi-location SEO", "Advanced content flywheel", "Bi-weekly strategy calls", "Priority support", "Paid ads management"
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Get Started", href: "/contact" }]}
|
||||
buttons={[{ text: "Book a Call", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -77,7 +76,7 @@ export default function PricingPage() {
|
||||
description="From day one, you get access to our complete platform and dedicated support"
|
||||
features={[
|
||||
{
|
||||
id: "included-1", title: "AI-Powered Lead Targeting", description: "Our proprietary machine learning identifies and reaches high-intent prospects actively searching for your services. We focus on quality over quantity—every lead is pre-qualified.", tag: "Core Feature", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=4", imageAlt: "AI targeting technology"
|
||||
id: "included-1", title: "Lead Generation", description: "Our proven process identifies and reaches high-intent prospects actively searching for your services. We focus on quality over quantity—every lead is pre-qualified.", tag: "Core Feature", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=4", imageAlt: "Lead generation technology"
|
||||
},
|
||||
{
|
||||
id: "included-2", title: "Dedicated Account Management", description: "You get a real person managing your campaigns, not an algorithm. Your account manager understands your business, your goals, and works daily to maximize your results.", tag: "Core Feature", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-in--1772481632698-b8cddcbc.png?_wi=2", imageAlt: "Account management"
|
||||
@@ -92,6 +91,44 @@ export default function PricingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about Navo Lab and our lead generation services"
|
||||
tag="FAQ"
|
||||
tagAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1", title: "What is Navo Lab?", content: "Navo Lab is a digital marketing growth engine specializing in lead generation and SEO for local service businesses. We help HVAC, plumbing, electrical, roofing, and other service companies generate consistent, qualified leads through proven digital marketing strategies and dedicated account management."
|
||||
},
|
||||
{
|
||||
id: "faq-2", title: "How does Navo Lab generate leads?", content: "We use a comprehensive 22-point digital marketing system that includes local SEO optimization, strategic content creation, Google Business Profile management, local citation building, and targeted digital outreach. Our approach focuses on reaching high-intent prospects actively searching for your services in your service area."
|
||||
},
|
||||
{
|
||||
id: "faq-3", title: "What service industries do you work with?", content: "We specialize in lead generation for service businesses including HVAC, plumbing, electrical, roofing, construction, and similar trades. We have deep expertise in understanding the sales cycles, customer behavior, and marketing challenges specific to local service companies."
|
||||
},
|
||||
{
|
||||
id: "faq-4", title: "Are there long-term contracts?", content: "No. We offer flexible month-to-month retainers with no long-term contracts required. We believe in earning your business every single month through consistent results and dedicated service."
|
||||
},
|
||||
{
|
||||
id: "faq-5", title: "How do I know what results I'm getting?", content: "You receive detailed monthly reports showing leads delivered, conversion metrics, cost per lead, and ROI. We believe in complete transparency—you'll always know exactly what you're paying for and what results you're achieving."
|
||||
},
|
||||
{
|
||||
id: "faq-6", title: "What makes Navo Lab different?", content: "We combine deep industry expertise with proven marketing systems and dedicated account management. We focus on quality leads, not vanity metrics. Your success is our success, and we work daily to optimize your lead flow and results."
|
||||
},
|
||||
{
|
||||
id: "faq-7", title: "How long before I see results?", content: "Most clients begin seeing qualified leads within the first 30-60 days of implementation. However, our approach is designed for long-term sustainable growth. The longer you're with us, the stronger your lead flow becomes as SEO rankings improve and your digital presence compounds."
|
||||
},
|
||||
{
|
||||
id: "faq-8", title: "What's included in each pricing tier?", content: "All tiers include our full digital marketing platform and dedicated support. Foundation includes essential SEO setup and monthly reporting. Growth adds our complete 22-point system and weekly strategy calls. Scale provides multi-location capabilities and bi-weekly optimization sessions."
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing-cta" data-section="pricing-cta">
|
||||
<ContactCTA
|
||||
tag="Choose Your Plan"
|
||||
@@ -118,4 +155,4 @@ export default function PricingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user