Update src/app/pricing/page.tsx
This commit is contained in:
@@ -51,62 +51,30 @@ export default function PricingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "starter",
|
id: "starter", price: "Free", name: "Starter", buttons: [
|
||||||
price: "Free",
|
|
||||||
name: "Starter",
|
|
||||||
buttons: [
|
|
||||||
{ text: "Get Started", href: "https://app.example.com/signup" },
|
{ text: "Get Started", href: "https://app.example.com/signup" },
|
||||||
{ text: "Learn More", href: "#" },
|
{ text: "Learn More", href: "#" },
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"1 AI Agent",
|
"1 AI Agent", "Up to 1,000 conversations/month", "Basic analytics", "Email support", "Standard integrations"],
|
||||||
"Up to 1,000 conversations/month",
|
|
||||||
"Basic analytics",
|
|
||||||
"Email support",
|
|
||||||
"Standard integrations",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "professional",
|
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
|
||||||
badge: "Most Popular",
|
price: "$499/month", name: "Professional", buttons: [
|
||||||
badgeIcon: Sparkles,
|
|
||||||
price: "$499/month",
|
|
||||||
name: "Professional",
|
|
||||||
buttons: [
|
|
||||||
{
|
{
|
||||||
text: "Start Free Trial",
|
text: "Start Free Trial", href: "https://app.example.com/trial"},
|
||||||
href: "https://app.example.com/trial",
|
|
||||||
},
|
|
||||||
{ text: "Contact Sales", href: "/contact" },
|
{ text: "Contact Sales", href: "/contact" },
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Up to 5 AI Agents",
|
"Up to 5 AI Agents", "Up to 50,000 conversations/month", "Advanced analytics & reporting", "Priority support", "50+ integrations", "Custom training data", "Performance optimization"],
|
||||||
"Up to 50,000 conversations/month",
|
|
||||||
"Advanced analytics & reporting",
|
|
||||||
"Priority support",
|
|
||||||
"50+ integrations",
|
|
||||||
"Custom training data",
|
|
||||||
"Performance optimization",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "enterprise",
|
id: "enterprise", price: "Custom", name: "Enterprise", buttons: [
|
||||||
price: "Custom",
|
|
||||||
name: "Enterprise",
|
|
||||||
buttons: [
|
|
||||||
{ text: "Schedule Demo", href: "/contact" },
|
{ text: "Schedule Demo", href: "/contact" },
|
||||||
{ text: "Talk to Sales", href: "mailto:sales@aiassist.io" },
|
{ text: "Talk to Sales", href: "mailto:sales@aiassist.io" },
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Unlimited AI Agents",
|
"Unlimited AI Agents", "Unlimited conversations", "Custom analytics & dashboards", "24/7 dedicated support", "100+ integrations + custom APIs", "Advanced security & compliance", "SLA guarantees", "On-premise deployment options"],
|
||||||
"Unlimited conversations",
|
|
||||||
"Custom analytics & dashboards",
|
|
||||||
"24/7 dedicated support",
|
|
||||||
"100+ integrations + custom APIs",
|
|
||||||
"Advanced security & compliance",
|
|
||||||
"SLA guarantees",
|
|
||||||
"On-premise deployment options",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
carouselMode="buttons"
|
carouselMode="buttons"
|
||||||
@@ -122,9 +90,7 @@ export default function PricingPage() {
|
|||||||
description="Start with a free account and upgrade anytime. No credit card required. All plans include a 14-day free trial of premium features."
|
description="Start with a free account and upgrade anytime. No credit card required. All plans include a 14-day free trial of premium features."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Start Free Trial",
|
text: "Start Free Trial", href: "https://app.example.com/trial"},
|
||||||
href: "https://app.example.com/trial",
|
|
||||||
},
|
|
||||||
{ text: "Contact Sales", href: "/contact" },
|
{ text: "Contact Sales", href: "/contact" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -138,8 +104,7 @@ export default function PricingPage() {
|
|||||||
logoText="AIAssist"
|
logoText="AIAssist"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product",
|
title: "Product", items: [
|
||||||
items: [
|
|
||||||
{ label: "Features", href: "/features" },
|
{ label: "Features", href: "/features" },
|
||||||
{ label: "Pricing", href: "/pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Security", href: "/security" },
|
{ label: "Security", href: "/security" },
|
||||||
@@ -147,8 +112,7 @@ export default function PricingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About", href: "/" },
|
{ label: "About", href: "/" },
|
||||||
{ label: "Blog", href: "/blog" },
|
{ label: "Blog", href: "/blog" },
|
||||||
{ label: "Careers", href: "/careers" },
|
{ label: "Careers", href: "/careers" },
|
||||||
@@ -156,20 +120,16 @@ export default function PricingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Resources",
|
title: "Resources", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Documentation",
|
label: "Documentation", href: "https://docs.aiassist.io"},
|
||||||
href: "https://docs.aiassist.io",
|
|
||||||
},
|
|
||||||
{ label: "Integrations", href: "/integrations" },
|
{ label: "Integrations", href: "/integrations" },
|
||||||
{ label: "Templates", href: "/templates" },
|
{ label: "Templates", href: "/templates" },
|
||||||
{ label: "Support", href: "/support" },
|
{ label: "Support", href: "/support" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{ label: "Privacy Policy", href: "/privacy" },
|
{ label: "Privacy Policy", href: "/privacy" },
|
||||||
{ label: "Terms of Service", href: "/terms" },
|
{ label: "Terms of Service", href: "/terms" },
|
||||||
{ label: "Cookie Policy", href: "/cookies" },
|
{ label: "Cookie Policy", href: "/cookies" },
|
||||||
|
|||||||
Reference in New Issue
Block a user