Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-13 16:29:40 +00:00
parent 292ba0c9d6
commit d806bcbf1c

View File

@@ -17,8 +17,7 @@ const PricingPage = () => {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "#" },
{ label: "Pricing", href: "/pricing" },
{ label: "Security", href: "#" },
@@ -26,8 +25,7 @@ const PricingPage = () => {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -35,8 +33,7 @@ const PricingPage = () => {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#" },
{ label: "API Reference", href: "#" },
{ label: "Case Studies", href: "#" },
@@ -44,8 +41,7 @@ const PricingPage = () => {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -72,9 +68,7 @@ const PricingPage = () => {
navItems={navItems}
brandName="AI Client Finder"
button={{
text: "Get Started",
href: "/contact",
}}
text: "Get Started", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -83,74 +77,33 @@ const PricingPage = () => {
<PricingCardThree
plans={[
{
id: "plan-starter",
badge: "Popular",
badgeIcon: Zap,
price: "$499",
name: "Starter",
buttons: [
id: "plan-starter", badge: "Popular", badgeIcon: Zap,
price: "$499", name: "Starter", buttons: [
{
text: "Start Free Trial",
href: "/contact",
},
text: "Start Free Trial", href: "/contact"},
],
features: [
"500 calls per month",
"AI business discovery",
"Call recordings & transcripts",
"Email summaries",
"Basic analytics",
"Email support",
"CRM integration",
],
"500 calls per month", "AI business discovery", "Call recordings & transcripts", "Email summaries", "Basic analytics", "Email support", "CRM integration"],
},
{
id: "plan-pro",
badge: "Best Value",
badgeIcon: Zap,
price: "$1,299",
name: "Pro",
buttons: [
id: "plan-pro", badge: "Best Value", badgeIcon: Zap,
price: "$1,299", name: "Pro", buttons: [
{
text: "Start Free Trial",
href: "/contact",
},
text: "Start Free Trial", href: "/contact"},
],
features: [
"2,500 calls per month",
"AI business discovery",
"Call recordings & transcripts",
"Email & SMS summaries",
"Advanced analytics",
"Priority support",
"Multiple CRM integrations",
"Custom call scripts",
"A/B testing",
],
"2,500 calls per month", "AI business discovery", "Call recordings & transcripts", "Email & SMS summaries", "Advanced analytics", "Priority support", "Multiple CRM integrations", "Custom call scripts", "A/B testing"],
},
{
id: "plan-enterprise",
price: "Custom",
name: "Enterprise",
buttons: [
id: "plan-enterprise", price: "Custom", name: "Enterprise", buttons: [
{
text: "Contact Sales",
href: "/contact",
},
text: "Contact Sales", href: "/contact"},
],
features: [
"Unlimited calls",
"Custom AI training",
"Dedicated account manager",
"Custom integrations",
"White-label option",
"Advanced security",
"SLA guarantee",
"24/7 phone support",
],
"Unlimited calls", "Custom AI training", "Dedicated account manager", "Custom integrations", "White-label option", "Advanced security", "SLA guarantee", "24/7 phone support"],
},
]}
animationType="scale-rotate"
animationType="blur-reveal"
title="Simple, Transparent Pricing"
description="Choose the plan that fits your business. All plans include 100 free calls to start."
tag="No Contracts, Cancel Anytime"
@@ -158,7 +111,7 @@ const PricingPage = () => {
textboxLayout="split"
useInvertedBackground={false}
containerClassName="max-w-6xl mx-auto"
titleClassName="text-4xl font-bold mb-4"
textBoxTitleClassName="text-4xl font-bold mb-4"
/>
</div>