Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-04 07:27:31 +00:00
parent f3094ae7d3
commit f4043c1440

View File

@@ -11,11 +11,11 @@ import { Sparkles, Zap, Crown } from "lucide-react";
export default function PricingPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "For Sellers", id: "sellers" },
{ name: "For Buyers", id: "buyers" },
{ name: "How It Works", id: "how-it-works" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "For Sellers", id: "/sellers" },
{ name: "For Buyers", id: "/buyers" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
];
return (
@@ -25,7 +25,7 @@ export default function PricingPage() {
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSmallSizeLargeTitles"
background="aurora"
background="circleGradient"
cardStyle="glass-depth"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
@@ -47,7 +47,7 @@ export default function PricingPage() {
{ text: "Get Started", href: "/contact" },
{ text: "Contact Sales", href: "/contact" },
]}
background={{ variant: "aurora" }}
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg"
imageAlt="Pricing plans dashboard"
mediaAnimation="slide-up"
@@ -66,20 +66,17 @@ export default function PricingPage() {
{
id: "starter", badge: "Starting Out", badgeIcon: Sparkles,
price: "₹0", subtitle: "Perfect for new sellers", buttons: [{ text: "Get Started", href: "/contact" }],
features: [
"Up to 50 products", "Basic analytics", "Email support", "Standard commission (8%)"],
features: ["Up to 50 products", "Basic analytics", "Email support", "Standard commission (8%)"],
},
{
id: "growth", badge: "Most Popular", badgeIcon: Zap,
price: "₹499/month", subtitle: "For growing businesses", buttons: [{ text: "Start Free Trial", href: "/contact" }],
features: [
"Up to 500 products", "Advanced analytics", "Priority support", "Reduced commission (5%)", "Marketing tools"],
features: ["Up to 500 products", "Advanced analytics", "Priority support", "Reduced commission (5%)", "Marketing tools"],
},
{
id: "enterprise", badge: "Premium", badgeIcon: Crown,
price: "₹2,999/month", subtitle: "For established sellers", buttons: [{ text: "Contact Sales", href: "/contact" }],
features: [
"Unlimited products", "Custom analytics", "Dedicated account manager", "Lowest commission (2%)", "API access", "White-label options"],
features: ["Unlimited products", "Custom analytics", "Dedicated account manager", "Lowest commission (2%)", "API access", "White-label options"],
},
]}
/>