Merge version_1 into main #5
@@ -2,6 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
@@ -17,45 +18,6 @@ export default function PricingPage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
{ label: "Features", href: "/" },
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "Dashboard", href: "https://app.nexagent.com" },
|
||||
{ label: "Integrations", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
{ label: "Security", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "WhatsApp", href: "https://wa.me/1234567890" },
|
||||
{ label: "Email", href: "mailto:hello@nexagent.com" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -63,7 +25,7 @@ export default function PricingPage() {
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLarge"
|
||||
background="aurora"
|
||||
background="circleGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -71,117 +33,139 @@ export default function PricingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems.map((item) => ({
|
||||
name: item.name,
|
||||
id: item.id,
|
||||
}))}
|
||||
navItems={navItems}
|
||||
brandName="NexAgent"
|
||||
bottomLeftText="AI Sales Automation"
|
||||
bottomLeftText="Pricing"
|
||||
bottomRightText="hello@nexagent.com"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose the perfect plan for your sales automation needs. No hidden fees, cancel anytime."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Pricing"
|
||||
tagIcon={CreditCard}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Free Trial", href: "https://app.nexagent.com/signup"
|
||||
},
|
||||
{
|
||||
text: "Contact Sales", href: "/contact"
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AoXjpZmPVdpKU9aQbGVNncTDwg/a-modern-sleek-ai-sales-agent-dashboard--1773260604059-35a191ae.png"
|
||||
imageAlt="NexAgent Pricing Plans"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
plans={[
|
||||
{
|
||||
id: "starter",
|
||||
price: "$49/mo",
|
||||
name: "Starter",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "https://app.nexagent.com/signup?plan=starter",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"10,000 messages/month",
|
||||
"1 channel (WhatsApp)",
|
||||
"Basic AI conversations",
|
||||
"5,000 prospects",
|
||||
"Email support",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "professional",
|
||||
badge: "Most Popular",
|
||||
badgeIcon: Sparkles,
|
||||
price: "$149/mo",
|
||||
name: "Professional",
|
||||
buttons: [
|
||||
{
|
||||
text: "Start Free Trial",
|
||||
href: "https://app.nexagent.com/signup?plan=professional",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"100,000 messages/month",
|
||||
"All 3 channels",
|
||||
"Full AI + RAG pipeline",
|
||||
"Lead scoring + BANT",
|
||||
"CRM integration",
|
||||
"Calendar booking",
|
||||
"n8n automation",
|
||||
"Priority support",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
price: "Custom",
|
||||
name: "Enterprise",
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact Sales",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"Unlimited everything",
|
||||
"White-label option",
|
||||
"Custom integrations",
|
||||
"Dedicated account manager",
|
||||
"SLA guarantee",
|
||||
"24/7 phone support",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose the plan that fits your business needs"
|
||||
title="Plans Tailored for Every Business"
|
||||
description="From startups to enterprises, we have a plan that fits your needs"
|
||||
tag="Pricing"
|
||||
tagIcon={CreditCard}
|
||||
tagAnimation="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "starter", price: "$49/mo", name: "Starter", buttons: [
|
||||
{
|
||||
text: "Get Started", href: "https://app.nexagent.com/signup?plan=starter"
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"10,000 messages/month", "1 channel (WhatsApp)", "Basic AI conversations", "5,000 prospects", "Email support"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$149/mo", name: "Professional", buttons: [
|
||||
{
|
||||
text: "Start Free Trial", href: "https://app.nexagent.com/signup?plan=professional"
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"100,000 messages/month", "All 3 channels", "Full AI + RAG pipeline", "Lead scoring + BANT", "CRM integration", "Calendar booking", "n8n automation", "Priority support"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise", price: "Custom", name: "Enterprise", buttons: [
|
||||
{
|
||||
text: "Contact Sales", href: "/contact"
|
||||
},
|
||||
],
|
||||
features: [
|
||||
"Unlimited everything", "White-label option", "Custom integrations", "Dedicated account manager", "SLA guarantee", "24/7 phone support"
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing-cta" data-section="pricing-cta">
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactCTA
|
||||
tag="Get Started"
|
||||
tag="Ready to Get Started?"
|
||||
tagIcon={Rocket}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Never Miss a Lead Again?"
|
||||
description="Join 500+ businesses closing more deals with AI. Setup takes under 10 minutes."
|
||||
title="Start Your Free Trial Today"
|
||||
description="No credit card required. Setup takes less than 10 minutes. Full access to all features."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Free Trial",
|
||||
href: "https://app.nexagent.com/signup",
|
||||
text: "Start Free Trial", href: "https://app.nexagent.com/signup"
|
||||
},
|
||||
{
|
||||
text: "Book a Demo",
|
||||
href: "/contact",
|
||||
text: "Schedule Demo", href: "/contact"
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "aurora" }}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "/features" },
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "Dashboard", href: "https://app.nexagent.com" },
|
||||
{ label: "Integrations", href: "/features" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
{ label: "Security", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "WhatsApp", href: "https://wa.me/1234567890" },
|
||||
{ label: "Email", href: "mailto:hello@nexagent.com" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 NexAgent. All rights reserved."
|
||||
bottomRightText="Built by Ali Naqvi & Baqir Raza"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user