Switch to version 1: modified src/app/pricing/page.tsx

This commit is contained in:
2026-03-19 07:35:07 +00:00
parent af1b3b6187
commit 5d8960a230

View File

@@ -27,25 +27,25 @@ export default function PricingPage() {
},
{
items: [
{ label: "Study Helper", href: "/modes/study-helper" },
{ label: "Code Helper", href: "/modes/code-helper" },
{ label: "Business Helper", href: "/modes/business-helper" },
{ label: "Study Helper", href: "/modes/deep-research" },
{ label: "Code Helper", href: "/modes/deep-research" },
{ label: "Business Helper", href: "/modes/deep-research" },
{ label: "Deep Research", href: "/modes/deep-research" },
],
},
{
items: [
{ label: "Developer API", href: "/developer" },
{ label: "Documentation", href: "/docs" },
{ label: "Developer API", href: "/modes/deep-research" },
{ label: "Documentation", href: "/modes/deep-research" },
{ label: "Status", href: "https://status.airbrone.ai" },
{ label: "Blog", href: "/blog" },
{ label: "Blog", href: "/modes/deep-research" },
],
},
{
items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Security", href: "/security" },
{ label: "Privacy Policy", href: "/modes/deep-research" },
{ label: "Terms of Service", href: "/modes/deep-research" },
{ label: "Security", href: "/modes/deep-research" },
{ label: "Contact", href: "/" },
],
},
@@ -77,14 +77,16 @@ export default function PricingPage() {
brandName="AIRBRONE AI"
navItems={navItems}
button={{
text: "Get Started Free", href: "/auth/login"}}
text: "Get Started Free",
href: "/auth/login",
}}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
title="Flexible Plans for Every User"
description="Start with a free 1-day trial to explore all four AI modes. Then choose the plan that fits your needs. All plans include Gemini and ChatGPT integration."
title="Simple, Transparent Pricing"
description="Choose the perfect plan for your needs. Start free for 1 day, then select your subscription."
tag="Pricing"
tagIcon={Tag}
tagAnimation="slide-up"
@@ -93,34 +95,97 @@ export default function PricingPage() {
animationType="slide-up"
plans={[
{
id: "study", title: "Study Helper", price: "₹749", period: "per month", features: [
"Unlimited homework help", "AI tutor availability", "Study materials", "Exam preparation", "Progress tracking", "Free 1-day trial included"],
id: "study",
title: "Study Helper",
price: "₹749",
period: "per month",
features: [
"Unlimited homework help",
"AI tutor availability",
"Study materials",
"Exam preparation",
"Progress tracking",
],
button: {
text: "Start Free Trial", href: "/auth/register?mode=study"},
text: "Subscribe Now",
href: "/checkout?plan=study",
},
},
{
id: "code", title: "Agent Code Helper", price: "₹1,999", period: "per month", features: [
"Code generation", "Debugging assistance", "Multi-language support", "Performance optimization", "Code review analytics", "Priority response time", "Free 1-day trial included"],
id: "code",
title: "Agent Code Helper",
price: "₹1,999",
period: "per month",
features: [
"Code generation",
"Debugging assistance",
"Multi-language support",
"Performance optimization",
"Code review analytics",
"Priority response time",
],
button: {
text: "Start Free Trial", href: "/auth/register?mode=code"},
text: "Subscribe Now",
href: "/checkout?plan=code",
},
},
{
id: "business", title: "Business Helper", price: "₹2,999", period: "per month", features: [
"Business analytics", "Market insights", "Strategic planning", "Competitor analysis", "Enterprise reports", "Team collaboration", "Free 1-day trial included"],
id: "business",
title: "Business Helper",
price: "₹2,999",
period: "per month",
features: [
"Business analytics",
"Market insights",
"Strategic planning",
"Competitor analysis",
"Enterprise reports",
"Team collaboration",
"API access",
],
button: {
text: "Start Free Trial", href: "/auth/register?mode=business"},
text: "Subscribe Now",
href: "/checkout?plan=business",
},
},
{
id: "research", title: "Deep Research", price: "₹3,359", period: "per month", features: [
"Advanced research tools", "Comprehensive analysis", "Knowledge synthesis", "Data aggregation", "Custom reports", "White-label options", "Free 1-day trial included"],
id: "research",
title: "Deep Research",
price: "₹3,359",
period: "per month",
features: [
"Advanced research tools",
"Comprehensive analysis",
"Knowledge synthesis",
"Data aggregation",
"Custom reports",
"White-label options",
"Dedicated support",
],
button: {
text: "Start Free Trial", href: "/auth/register?mode=research"},
text: "Subscribe Now",
href: "/checkout?plan=research",
},
},
{
id: "combo", title: "Ultimate Combo", price: "₹8,999", period: "per month", features: [
"All four AI modes included", "Unlimited queries", "Priority 24/7 support", "Advanced analytics", "Team management", "API access", "Free 1-day trial included"],
id: "combo",
title: "Ultimate Combo",
price: "₹8,999",
period: "per month",
features: [
"All four AI modes included",
"Unlimited queries",
"Priority 24/7 support",
"Advanced analytics",
"Team management",
"API access",
"Custom integrations",
"White-label option",
],
button: {
text: "Start Free Trial", href: "/auth/register?mode=combo"},
text: "Subscribe Now",
href: "/checkout?plan=combo",
},
},
]}
/>