Compare commits
52 Commits
version_1
...
version_17
| Author | SHA1 | Date | |
|---|---|---|---|
| c95c23490c | |||
| 762c6762e6 | |||
| 074ea40137 | |||
| 042eb6ec8c | |||
| 2bf40c255a | |||
| 7036bec97f | |||
| fdbe7ae858 | |||
| d603ed215d | |||
| fec6f90de3 | |||
| d3adcf23fc | |||
| cd1392c8d3 | |||
| 0fcda45fea | |||
| 14fcd33a68 | |||
| e6cfa517aa | |||
| 2cc0fc8224 | |||
| 540bf23e0b | |||
| fee209856b | |||
| e31dd836e7 | |||
| af90fadf44 | |||
| 5a6b3d9f5b | |||
| a0a66bf64a | |||
| 518a60f9d5 | |||
| f3a2b7e746 | |||
| da3c4e3369 | |||
| 10debe3577 | |||
| f694b35f15 | |||
| 33749123d1 | |||
| 6609458308 | |||
| f814c65737 | |||
| 2899ebb836 | |||
| e3d1da1e33 | |||
| 7e8bde3e0a | |||
| 7e92c8837d | |||
| dd6ceda493 | |||
| 8d928f8b82 | |||
| 4c5957e6ec | |||
| f5138eaa87 | |||
| cbe9df8f3f | |||
| b6858832cc | |||
| 346666e555 | |||
| 1a7c1973ba | |||
| 0d2029221d | |||
| 76befc8e33 | |||
| 1ddac28bb6 | |||
| 8d52b6429a | |||
| 0aef116dfc | |||
| 2af33d9dfb | |||
| 69081e074e | |||
| 8ef4f4722b | |||
| 787b0cb9cc | |||
| 53cb5c97a6 | |||
| 514d979392 |
138
src/app/about-us/page.tsx
Normal file
138
src/app/about-us/page.tsx
Normal file
@@ -0,0 +1,138 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { Zap, Award, Lightbulb, Target, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function AboutUsPage() {
|
||||
const navItems = [
|
||||
{ name: "How It Works", id: "how-it-works" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "About Us", id: "about-us" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Navo Lab"
|
||||
navItems={navItems}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
title="About Us"
|
||||
description="Navo Lab is revolutionizing how service businesses generate qualified leads. We combine AI-powered technology with deep industry expertise to deliver consistent, predictable results."
|
||||
tag="Our Story"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "glowing-orb" }}
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "#our-mission" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/uploaded-1772555286722-vkbiawuk.png"
|
||||
imageAlt="Navo Lab team"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
fixedMediaHeight={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="our-mission" data-section="our-mission">
|
||||
<FeatureCardMedia
|
||||
title="Our Mission & Values"
|
||||
description="We're committed to transparent, results-driven lead generation that transforms service businesses"
|
||||
features={[
|
||||
{
|
||||
id: "mission-1", title: "Transparency First", description: "Every metric, every lead, every dollar spent is tracked and reported. Our clients know exactly where their investment goes and what it generates.", tag: "Commitment"
|
||||
},
|
||||
{
|
||||
id: "mission-2", title: "Results-Driven Innovation", description: "We continuously optimize our AI algorithms and targeting strategies. Your success drives our innovation. Better leads mean better results.", tag: "Innovation"
|
||||
},
|
||||
{
|
||||
id: "mission-3", title: "Deep Industry Understanding", description: "Our team has worked in and with HVAC, plumbing, electrical, and service businesses. We understand your challenges, timelines, and what quality leads look like.", tag: "Expertise"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="why-choose" data-section="why-choose">
|
||||
<FeatureCardMedia
|
||||
title="Why Choose Navo Lab"
|
||||
description="Built on years of industry experience and proven results"
|
||||
features={[
|
||||
{
|
||||
id: "why-1", title: "Industry Expertise", description: "10+ years of experience in lead generation and digital marketing specifically for service industries.", tag: "Experience", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-wit-1772481632583-cb1f6acd.png?_wi=1", imageAlt: "Industry expertise"
|
||||
},
|
||||
{
|
||||
id: "why-2", title: "AI-Powered Technology", description: "Cutting-edge machine learning algorithms that continuously improve targeting and lead quality.", tag: "Technology", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=3", imageAlt: "AI technology"
|
||||
},
|
||||
{
|
||||
id: "why-3", title: "Dedicated Support", description: "Your own team of specialists committed to your success. Monthly strategy calls, weekly reporting, and continuous optimization.", 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=2", imageAlt: "Dedicated support team"
|
||||
},
|
||||
{
|
||||
id: "why-4", title: "Transparent Reporting", description: "No vanity metrics. Only real numbers that matter: qualified leads, booked appointments, and measurable ROI.", tag: "Reporting", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=3", imageAlt: "Transparent reporting"
|
||||
},
|
||||
{
|
||||
id: "why-5", title: "Multi-Vertical Experience", description: "Proven expertise across HVAC, plumbing, electrical, roofing, construction, and more service verticals.", tag: "Verticals", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/confident-service-business-owner-hvac-pl-1772481633162-358c5800.png?_wi=2", imageAlt: "Service business expertise"
|
||||
},
|
||||
{
|
||||
id: "why-6", title: "Proven Results", description: "Average 73% increase in lead quality, thousands of qualified leads generated, and consistent appointment bookings.", tag: "Results", 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: "Proven results"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-cta" data-section="about-cta">
|
||||
<ContactCTA
|
||||
tag="Join Our Community"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Transform Your Lead Generation?"
|
||||
description="Schedule a consultation with our team to discuss your lead generation goals and discover how Navo Lab can transform your service business."
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "/contact" },
|
||||
{ text: "Get Free Audit", href: "/contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Navo Lab"
|
||||
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
|
||||
rightLink={{ text: "Terms of Service", href: "/terms" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -2,20 +2,20 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import Link from "next/link";
|
||||
import { Zap, TrendingUp, Phone, Calendar, Users, Award, Lightbulb, Target } from "lucide-react";
|
||||
import { Zap } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "How It Works", id: "how-it-works" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -38,16 +38,59 @@ export default function AboutPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-company" data-section="about-company">
|
||||
<AboutMetric
|
||||
title="About Navo Lab: Revolutionizing Lead Generation for Service Businesses"
|
||||
metrics={[
|
||||
{ icon: Award, label: "Years of Industry Experience", value: "10+" },
|
||||
{ icon: Lightbulb, label: "AI Innovations Deployed", value: "50+" },
|
||||
{ icon: Target, label: "Service Verticals Served", value: "12+" },
|
||||
{ icon: TrendingUp, label: "Average ROI Improvement", value: "315%" },
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
title="About Navo Lab"
|
||||
description="Founded by Karu Thompson in late 2024 in St. Petersburg, Florida, Navo Lab was built on a simple principle: testing and proving systems work in real service businesses before claiming they do. We don't use vanity metrics or theoretical frameworks. Every strategy we recommend comes from real-world application and measurable results."
|
||||
tag="Our Story"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "glowing-orb" }}
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Schedule Consultation", href: "/contact" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
fixedMediaHeight={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="founder-story" data-section="founder-story">
|
||||
<TextSplitAbout
|
||||
title="Built by Testing in Real Businesses"
|
||||
description={[
|
||||
"Karu Thompson founded Navo Lab after years of direct testing and optimization in actual service businesses. Rather than relying on industry assumptions or marketing theories, every system Navo Lab uses today has been validated through real business implementation. We saw what worked consistently and what failed. We measured results directly—not vanity metrics, but actual lead quality and business impact.", "This hands-on approach revealed clear patterns: most agencies sell generic solutions and rely on inflated numbers. Service business owners deserve better. They need partners who understand their specific challenges, test strategies in their real market conditions, and report honest results.", "Navo Lab was founded to deliver exactly that. We build and test systems on real businesses first. We prove they work. Then we scale them for other service companies facing the same lead generation challenges. Everything we do is grounded in direct business testing and measurable outcomes."
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Learn Our Approach", href: "#our-approach" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="our-approach" data-section="our-approach">
|
||||
<FeatureCardMedia
|
||||
title="Our Approach: Built on Testing, Not Theory"
|
||||
description="Every strategy we recommend comes from direct business testing and proven results"
|
||||
features={[
|
||||
{
|
||||
id: "approach-1", title: "Real Business Testing", description: "We tested lead generation strategies directly in service businesses. Every tactic we implement has been validated through real-world results. We know what works because we've seen it work repeatedly in actual business environments.", tag: "Foundation"
|
||||
},
|
||||
{
|
||||
id: "approach-2", title: "Service Industry Focus", description: "We understand the service business landscape—sales cycles, customer behavior, competitive pressures, seasonal patterns. This knowledge comes from testing in real HVAC, plumbing, electrical, roofing, and construction businesses.", tag: "Expertise"
|
||||
},
|
||||
{
|
||||
id: "approach-3", title: "Transparent, Measurable Results", description: "We track leads delivered, conversion rates, cost per lead, and direct ROI. No inflated numbers. No vanity metrics. You'll see exactly what you're paying for and what results you're getting each month.", tag: "Accountability"
|
||||
},
|
||||
{
|
||||
id: "approach-4", title: "Continuous Optimization", description: "We apply what we learned through testing to continuously refine your strategy. Based on real data and real performance, we improve targeting, messaging, and channel strategy. Your lead quality improves as we learn what works best for your specific business.", tag: "Growth"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -58,31 +101,34 @@ export default function AboutPage() {
|
||||
description="We're committed to transparent, results-driven lead generation that transforms service businesses"
|
||||
features={[
|
||||
{
|
||||
id: "mission-1", title: "Transparency First", description: "Every metric, every lead, every dollar spent is tracked and reported. Our clients know exactly where their investment goes and what it generates.", tag: "Commitment", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=3", imageAlt: "Transparent reporting"},
|
||||
id: "mission-1", title: "Transparency First", description: "Every metric, every lead, every dollar spent is tracked and reported. Our clients know exactly where their investment goes and what results it generates. We've seen what happens when agencies hide behind jargon and vanity metrics—we don't operate that way.", tag: "Commitment"
|
||||
},
|
||||
{
|
||||
id: "mission-2", title: "Results-Driven Innovation", description: "We continuously optimize our AI algorithms and targeting strategies. Your success drives our innovation. Better leads mean better results.", tag: "Innovation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=3", imageAlt: "AI innovation"},
|
||||
id: "mission-2", title: "Results-Driven Innovation", description: "We continuously test and optimize based on real performance data. Your success drives our innovation. Better leads mean better results. When something isn't working, we change it. When something works, we scale it.", tag: "Innovation"
|
||||
},
|
||||
{
|
||||
id: "mission-3", title: "Deep Industry Understanding", description: "Our team has worked in and with HVAC, plumbing, electrical, and service businesses. We understand your challenges, timelines, and what quality leads look like.", tag: "Expertise", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-wit-1772481632583-cb1f6acd.png?_wi=1", imageAlt: "Industry expertise"},
|
||||
id: "mission-3", title: "Deep Industry Understanding", description: "We've built and tested systems in service businesses. We understand your challenges, your sales timelines, what quality leads look like in your market, and how to measure actual business impact.", tag: "Expertise"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-cta" data-section="about-cta">
|
||||
<ContactCTA
|
||||
tag="Join Our Community"
|
||||
tag="Ready to Grow"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Learn More About Navo Lab?"
|
||||
description="Schedule a consultation with our team to discuss your lead generation goals and discover how we can transform your service business."
|
||||
title="Ready to Transform Your Lead Generation?"
|
||||
description="Schedule a consultation with our team to discuss your lead generation goals. We'll share what we've learned from years of testing and show you exactly how Navo Lab can deliver consistent, qualified leads for your service business."
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "/contact" },
|
||||
{ text: "Get Free Audit", href: "/contact" },
|
||||
{ text: "Get Free Audit", href: "/contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -96,4 +142,4 @@ export default function AboutPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,16 +6,15 @@ import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import Link from "next/link";
|
||||
import { Zap, Mail, Phone as PhoneIcon, MessageSquare } from "lucide-react";
|
||||
import { Zap } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "How It Works", id: "how-it-works" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About Us", id: "/about-us" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -44,10 +43,10 @@ export default function ContactPage() {
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
title="Request Your Free Digital Audit"
|
||||
description="Let's discuss your lead generation goals and discover how Navo Lab can transform your service business. Our team will contact you within 24 hours to schedule your personalized audit and strategy consultation."
|
||||
description="Let's discover what's possible for your business. We'll analyze your current marketing, identify the opportunities you're missing, and show you exactly how Navo Lab can transform your lead flow. Our team will contact you within 24 hours to schedule your personalized consultation."
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "https://calendly.com" },
|
||||
{ text: "Send Message", href: "mailto:hello@navo-lab.com" },
|
||||
{ text: "Send Message", href: "mailto:hello@navo-lab.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
@@ -57,15 +56,18 @@ export default function ContactPage() {
|
||||
|
||||
<div id="contact-options" data-section="contact-options">
|
||||
<FeatureCardMedia
|
||||
title="Multiple Ways to Connect"
|
||||
description="Choose the contact method that works best for you"
|
||||
title="Connect With Us Today"
|
||||
description="Choose the contact method that works best for you. We respond quickly because your time matters."
|
||||
features={[
|
||||
{
|
||||
id: "contact-1", title: "Schedule a Call", description: "Book a time that works for your schedule. Our team will walk you through the digital audit process and answer all your questions about lead generation for your service business.", tag: "Calendar", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-wit-1772481632583-cb1f6acd.png?_wi=2", imageAlt: "Schedule a call"},
|
||||
id: "contact-1", title: "Schedule a Strategy Call", description: "Book a time that fits your schedule. Our team will walk you through your digital audit, discuss your lead generation goals, and answer all your questions about how Navo Lab can transform your business.", tag: "Calendar", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-wit-1772481632583-cb1f6acd.png?_wi=2", imageAlt: "Schedule a call"
|
||||
},
|
||||
{
|
||||
id: "contact-2", title: "Email Us", description: "Send us a detailed message about your business and lead generation goals. We'll respond with specific insights and next steps tailored to your situation.", tag: "Email", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-diverse-team-me-1772481633100-b1fe8b6c.png?_wi=2", imageAlt: "Email support"},
|
||||
id: "contact-2", title: "Email Us Your Questions", description: "Send us a detailed message about your service business and lead generation goals. We'll respond with specific insights, recommendations, and next steps tailored directly to your situation.", tag: "Email", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-diverse-team-me-1772481633100-b1fe8b6c.png?_wi=2", imageAlt: "Email support"
|
||||
},
|
||||
{
|
||||
id: "contact-3", title: "Request Audit", description: "Start with a comprehensive free digital audit. We'll analyze your current marketing presence, identify opportunities, and provide actionable recommendations—no obligations attached.", tag: "Audit", 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=2", imageAlt: "Free audit request"},
|
||||
id: "contact-3", title: "Request Your Free Audit", description: "Start with our comprehensive free digital audit. We'll analyze your current marketing presence, identify opportunities you're missing, provide actionable recommendations, and show you what's possible—no obligations, no credit card required.", tag: "Audit", 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=2", imageAlt: "Free audit request"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -75,15 +77,16 @@ export default function ContactPage() {
|
||||
|
||||
<div id="contact-social-proof" data-section="contact-social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Service Businesses"
|
||||
description="Join hundreds of service businesses already generating predictable leads with Navo Lab"
|
||||
title="Join Hundreds of Service Businesses Getting Results"
|
||||
description="Leading HVAC, plumbing, electrical, roofing, and construction companies trust Navo Lab to deliver predictable, qualified leads every month"
|
||||
tag="Partners"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={["BlueFlame HVAC", "ProPlumbing Solutions", "ElectriPro Services", "RoofMax Construction", "Elite Electrical"]}
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149210119.jpg", "http://img.b2bpic.net/free-vector/flat-design-construction-company-logo-template_23-2150005184.jpg", "http://img.b2bpic.net/free-vector/flat-design-storm-logo-template_23-2149189464.jpg", "http://img.b2bpic.net/free-vector/yellow-black-geometric-logos-monoline-style_23-2147697748.jpg", "http://img.b2bpic.net/free-vector/dental-logo-template_1057-2630.jpg"]}
|
||||
"http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149210119.jpg", "http://img.b2bpic.net/free-vector/flat-design-construction-company-logo-template_23-2150005184.jpg", "http://img.b2bpic.net/free-vector/flat-design-storm-logo-template_23-2149189464.jpg", "http://img.b2bpic.net/free-vector/yellow-black-geometric-logos-monoline-style_23-2147697748.jpg", "http://img.b2bpic.net/free-vector/dental-logo-template_1057-2630.jpg"
|
||||
]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
/>
|
||||
|
||||
@@ -11,25 +11,28 @@ const figtree = Figtree({
|
||||
export const metadata: Metadata = {
|
||||
title: "Navo Lab | AI Lead Generation for Service Businesses", description: "Generate qualified leads for HVAC, plumbing, electrical, roofing, and service businesses. AI-powered targeting, dedicated support, transparent reporting. Get your free digital audit today.", keywords: "lead generation, HVAC leads, plumbing leads, service business marketing, AI targeting, qualified leads", metadataBase: new URL("https://navo-lab.com"),
|
||||
alternates: {
|
||||
canonical: "https://navo-lab.com"},
|
||||
canonical: "https://navo-lab.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Navo Lab | AI Lead Generation Platform", description: "We make your phone ring. Predictable leads for service businesses using AI-powered targeting and dedicated strategy.", siteName: "Navo Lab", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/a-modern-ai-powered-lead-generation-dash-1772481633855-c10db891.png", alt: "Navo Lab Dashboard"},
|
||||
],
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/a-modern-ai-powered-lead-generation-dash-1772481633855-c10db891.png", alt: "Navo Lab Dashboard"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Navo Lab | AI Lead Generation", description: "Generate qualified leads for your service business with AI-powered targeting and dedicated support.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/a-modern-ai-powered-lead-generation-dash-1772481633855-c10db891.png"],
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/a-modern-ai-powered-lead-generation-dash-1772481633855-c10db891.png"
|
||||
]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
children
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
@@ -1412,4 +1415,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
178
src/app/page.tsx
178
src/app/page.tsx
@@ -3,23 +3,21 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
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 Link from "next/link";
|
||||
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", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -44,15 +42,15 @@ export default function HomePage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
title="We make your phone ring"
|
||||
description="Navo Lab generates qualified leads for service businesses using AI-powered targeting and dedicated strategy. See your digital opportunities free."
|
||||
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"
|
||||
@@ -63,35 +61,25 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="Navo Lab delivers predictable lead flow for trades and service businesses"
|
||||
metrics={[
|
||||
{ icon: TrendingUp, label: "Average Lead Quality Increase", value: "73%" },
|
||||
{ icon: Phone, label: "Qualified Calls Generated", value: "12K+" },
|
||||
{ icon: Calendar, label: "Booked Appointments", value: "8.5K+" },
|
||||
{ icon: Users, label: "Service Businesses Served", value: "500+" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FeatureCardMedia
|
||||
title="How It Works"
|
||||
description="Our proven process demystifies AI-powered lead generation into clear, actionable steps"
|
||||
title="Our Proven 4-Step Process"
|
||||
description="Our proven process turns our online presence into a lead-generating machine"
|
||||
tag="Process"
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "step-1", title: "Digital Audit", description: "We analyze your current marketing presence, identify digital opportunities, and provide transparent recommendations for lead generation improvement.", tag: "Step 1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=1", imageAlt: "Digital audit analysis dashboard"},
|
||||
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 Targeting Setup", description: "Our AI-powered system identifies and targets your ideal customers with precision, focusing on high-intent prospects ready to book appointments.", tag: "Step 2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=1", imageAlt: "AI targeting technology visualization"},
|
||||
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 Support", description: "You get a dedicated strategy team providing monthly strategy calls, weekly progress reporting, and detailed metrics to ensure success.", tag: "Step 3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-in--1772481632698-b8cddcbc.png?_wi=1", imageAlt: "Dedicated support team member"},
|
||||
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: "Qualified Leads", description: "Receive consistent, phone-ready leads delivered through your preferred channel. Our focus: your phone ringing with decision-makers.", tag: "Step 4", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/close-up-of-smartphone-showing-incoming--1772481632952-a4ba83a2.png?_wi=1", imageAlt: "Qualified phone leads dashboard"},
|
||||
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"
|
||||
textboxLayout="default"
|
||||
@@ -101,21 +89,21 @@ export default function HomePage() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardMedia
|
||||
title="Why Service Businesses Choose Navo Lab"
|
||||
description="Built specifically for HVAC, plumbing, electrical, roofing, construction, and more"
|
||||
title="Our Service Delivery Framework"
|
||||
description="The complete systems and strategies we implement for every service business client"
|
||||
features={[
|
||||
{
|
||||
id: "feature-1", title: "Transparent Reporting", description: "Monthly detailed metrics showing leads generated, conversion rates, cost per lead, and ROI. No vanity metrics—only what matters: phone calls and booked appointments.", 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 Management", description: "Your own dedicated support team handles strategy, optimization, and reporting. Monthly calls to review performance and adjust campaigns for maximum results.", 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 Targeting", description: "Advanced machine learning identifies and targets your ideal customers at the exact moment they're searching for your services. Precision beats volume every time.", 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 Expertise", description: "Deep experience across HVAC, plumbing, electrical, roofing, construction, dentistry, gyms, and architecture. We understand your business unique challenges.", tag: "Expertise", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/confident-service-business-owner-hvac-pl-1772481633162-358c5800.png", imageAlt: "Service business expertise"},
|
||||
{
|
||||
id: "feature-5", title: "Predictable Lead Flow", description: "Consistent, quality leads delivered month after month. Scale your business confidently with a reliable partner managing your digital growth.", 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", description: "Start with a comprehensive, no-obligation audit of your current marketing. Discover real opportunities and get actionable recommendations with no risk.", 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"
|
||||
textboxLayout="default"
|
||||
@@ -125,15 +113,16 @@ export default function HomePage() {
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Service Businesses Across America"
|
||||
description="Leading HVAC, plumbing, electrical, roofing, and construction companies rely on Navo Lab for 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"
|
||||
useInvertedBackground={false}
|
||||
names={["BlueFlame HVAC", "ProPlumbing Solutions", "ElectriPro Services", "RoofMax Construction", "Elite Electrical", "ClimateControl HVAC", "Precision Plumbers"]}
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149210119.jpg", "http://img.b2bpic.net/free-vector/flat-design-construction-company-logo-template_23-2150005184.jpg", "http://img.b2bpic.net/free-vector/flat-design-storm-logo-template_23-2149189464.jpg", "http://img.b2bpic.net/free-vector/yellow-black-geometric-logos-monoline-style_23-2147697748.jpg", "http://img.b2bpic.net/free-vector/dental-logo-template_1057-2630.jpg", "http://img.b2bpic.net/free-vector/logo-template-design_1195-112.jpg", "http://img.b2bpic.net/free-psd/architecture-project-landing-page_23-2150284053.jpg"]}
|
||||
"http://img.b2bpic.net/free-vector/creative-hvac-logo-template_23-2149210119.jpg", "http://img.b2bpic.net/free-vector/flat-design-construction-company-logo-template_23-2150005184.jpg", "http://img.b2bpic.net/free-vector/flat-design-storm-logo-template_23-2149189464.jpg", "http://img.b2bpic.net/free-vector/yellow-black-geometric-logos-monoline-style_23-2147697748.jpg", "http://img.b2bpic.net/free-vector/dental-logo-template_1057-2630.jpg", "http://img.b2bpic.net/free-vector/logo-template-design_1195-112.jpg", "http://img.b2bpic.net/free-psd/architecture-project-landing-page_23-2150284053.jpg"
|
||||
]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -141,69 +130,102 @@ export default function HomePage() {
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose the support tier that fits your business. All plans include dedicated support and detailed monthly reporting."
|
||||
tag="Support Tiers"
|
||||
title="Simple, Transparent Investment"
|
||||
description="Monthly retainers. No long-term contracts. We earn your business every month."
|
||||
tag="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/month", "Weekly progress reporting", "Basic AI targeting", "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: "professional", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$5,000", subtitle: "Ideal for growing service businesses ready to scale", features: [
|
||||
"100-200 qualified leads/month", "Weekly progress reporting", "Advanced AI targeting", "Dedicated account manager", "Monthly strategy calls", "Detailed monthly metrics", "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", features: [
|
||||
"200-400 qualified leads/month", "Weekly progress reporting", "Advanced AI + custom targeting", "Dedicated account manager + specialist", "Bi-weekly strategy calls", "Detailed monthly metrics", "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"
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Get Your Free Audit", href: "/contact" }]}
|
||||
buttons={[
|
||||
{ text: "Start Your Growth", href: "/contact" },
|
||||
{ text: "Speak with an Expert", href: "https://calendly.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
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={[
|
||||
{
|
||||
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"},
|
||||
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"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
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"},
|
||||
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"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
cardTitle="500+ service businesses trust Navo Lab to deliver consistent, qualified leads every month"
|
||||
cardTag="Customer Success"
|
||||
cardTagIcon={Heart}
|
||||
cardAnimation="slide-up"
|
||||
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 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" },
|
||||
{ text: "See Our Work", href: "/portfolio" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Ready to Grow"
|
||||
tag="Get Started Today"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
title="Get Your Free Digital Audit Today"
|
||||
description="Discover your digital opportunities and receive personalized recommendations from our AI-powered platform. No credit card required."
|
||||
description="Discover hidden opportunities in your current marketing. Our team will analyze your business, identify what's working and what's not, and deliver actionable recommendations—all completely free with no obligations."
|
||||
buttons={[
|
||||
{ text: "Request Free Audit", href: "/contact" },
|
||||
{ text: "Schedule a Call", href: "https://calendly.com" },
|
||||
{ text: "Schedule a Call", href: "https://calendly.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
|
||||
@@ -4,18 +4,18 @@ 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 Link from "next/link";
|
||||
import { Zap, Rocket, Sparkles, Crown, Check } from "lucide-react";
|
||||
import { Zap, Sparkles } from "lucide-react";
|
||||
|
||||
export default function PricingPage() {
|
||||
const navItems = [
|
||||
{ name: "How It Works", id: "how-it-works" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About Us", id: "/about-us" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -40,46 +40,50 @@ export default function PricingPage() {
|
||||
|
||||
<div id="pricing-plans" data-section="pricing-plans">
|
||||
<PricingCardOne
|
||||
title="Flexible Plans for Every Service Business"
|
||||
description="Transparent pricing with no hidden fees. Scale as you grow. All plans include dedicated support and detailed monthly reporting."
|
||||
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/month", "Weekly progress reporting", "Basic AI targeting", "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: "professional", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$5,000", subtitle: "Ideal for growing service businesses ready to scale", features: [
|
||||
"100-200 qualified leads/month", "Weekly progress reporting", "Advanced AI targeting", "Dedicated account manager", "Monthly strategy calls", "Detailed monthly metrics", "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", features: [
|
||||
"200-400 qualified leads/month", "Weekly progress reporting", "Advanced AI + custom targeting", "Dedicated account manager + specialist", "Bi-weekly strategy calls", "Detailed monthly metrics", "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"
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Get Started", href: "/contact" }]}
|
||||
buttons={[{ text: "Book a Call", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing-details" data-section="pricing-details">
|
||||
<FeatureCardMedia
|
||||
title="What's Included in Every Plan"
|
||||
description="All tiers include comprehensive support and transparent reporting"
|
||||
title="What Every Plan Includes"
|
||||
description="From day one, you get access to our complete platform and dedicated support"
|
||||
features={[
|
||||
{
|
||||
id: "included-1", title: "AI-Powered Targeting", description: "Our machine learning algorithms identify and target your ideal customers across multiple channels for maximum precision.", 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: "Get a dedicated point of contact who understands your business goals and manages your campaigns daily for optimal performance.", 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"},
|
||||
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"
|
||||
},
|
||||
{
|
||||
id: "included-3", title: "Transparent Reporting", description: "Receive detailed monthly reports showing exactly what you paid for, what leads you received, and your ROI. No vanity metrics.", tag: "Core Feature", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=4", imageAlt: "Transparent reporting"},
|
||||
id: "included-3", title: "Transparent Monthly Reporting", description: "Detailed reports showing leads delivered, conversion rates, cost per lead, and ROI. You'll always know exactly what you're paying for and what results you're getting.", tag: "Core Feature", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=4", imageAlt: "Transparent reporting"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -87,16 +91,54 @@ 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"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Scale Your Service Business?"
|
||||
description="Start with a free digital audit to understand your opportunities. No credit card required. Our team will contact you within 24 hours."
|
||||
description="Start with a free digital audit to understand your opportunities. We'll analyze your current marketing, identify what's working, and show you the real potential for your business. No credit card required."
|
||||
buttons={[
|
||||
{ text: "Get Free Audit", href: "/contact" },
|
||||
{ text: "Schedule Demo", href: "https://calendly.com" },
|
||||
{ text: "Schedule Demo", href: "https://calendly.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
@@ -113,4 +155,4 @@ export default function PricingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
--background: #f5f5f5;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1c1c1c;;
|
||||
--primary-cta: #1f3251;;
|
||||
--primary-cta: #1e4fff;;
|
||||
--primary-cta-text: #f5f5f5;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #1c1c1c;;
|
||||
|
||||
Reference in New Issue
Block a user