Update src/app/pricing/page.tsx
This commit is contained in:
@@ -10,8 +10,7 @@ import { DollarSign, Sparkles } from "lucide-react";
|
||||
export default function PricingPage() {
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "/features" },
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "Security", href: "/features" },
|
||||
@@ -19,8 +18,7 @@ export default function PricingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Careers", href: "#" },
|
||||
@@ -28,8 +26,7 @@ export default function PricingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{ label: "Documentation", href: "#" },
|
||||
{ label: "API Reference", href: "#" },
|
||||
{ label: "Community", href: "#" },
|
||||
@@ -37,8 +34,7 @@ export default function PricingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Compliance", href: "#" },
|
||||
@@ -71,9 +67,7 @@ export default function PricingPage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Get Started",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Get Started", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -81,70 +75,23 @@ export default function PricingPage() {
|
||||
<PricingCardFive
|
||||
plans={[
|
||||
{
|
||||
id: "startup",
|
||||
tag: "Startup Plan",
|
||||
price: "$2,999",
|
||||
period: "/month",
|
||||
description: "Perfect for growing companies getting started with cloud infrastructure.",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "What's Included:",
|
||||
features: [
|
||||
"Up to 100,000 monthly API calls",
|
||||
"2 TB data storage",
|
||||
"Basic security features",
|
||||
"Email support",
|
||||
"Auto-scaling capabilities",
|
||||
"Monthly performance reports",
|
||||
],
|
||||
id: "startup", tag: "Startup Plan", price: "$2,999", period: "/month", description: "Perfect for growing companies getting started with cloud infrastructure.", button: {
|
||||
text: "Get Started", href: "/contact"},
|
||||
featuresTitle: "What's Included:", features: [
|
||||
"Up to 100,000 monthly API calls", "2 TB data storage", "Basic security features", "Email support", "Auto-scaling capabilities", "Monthly performance reports"],
|
||||
},
|
||||
{
|
||||
id: "professional",
|
||||
tag: "Professional Plan",
|
||||
tagIcon: Sparkles,
|
||||
price: "$9,999",
|
||||
period: "/month",
|
||||
description: "Designed for established businesses requiring advanced features and priority support.",
|
||||
button: {
|
||||
text: "Start Free Trial",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "What's Included:",
|
||||
features: [
|
||||
"Unlimited API calls",
|
||||
"50 TB data storage",
|
||||
"Advanced security & encryption",
|
||||
"Priority 24/7 phone support",
|
||||
"Multi-region deployment",
|
||||
"Custom integrations",
|
||||
"Weekly optimization reviews",
|
||||
"Dedicated account manager",
|
||||
],
|
||||
id: "professional", tag: "Professional Plan", tagIcon: Sparkles,
|
||||
price: "$9,999", period: "/month", description: "Designed for established businesses requiring advanced features and priority support.", button: {
|
||||
text: "Start Free Trial", href: "/contact"},
|
||||
featuresTitle: "What's Included:", features: [
|
||||
"Unlimited API calls", "50 TB data storage", "Advanced security & encryption", "Priority 24/7 phone support", "Multi-region deployment", "Custom integrations", "Weekly optimization reviews", "Dedicated account manager"],
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
tag: "Enterprise Plan",
|
||||
price: "Custom",
|
||||
period: "/month",
|
||||
description: "Tailored solutions for large-scale operations with premium support and custom requirements.",
|
||||
button: {
|
||||
text: "Contact Sales",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "What's Included:",
|
||||
features: [
|
||||
"Unlimited everything",
|
||||
"Unlimited data storage",
|
||||
"Military-grade security",
|
||||
"24/7 dedicated support team",
|
||||
"Global infrastructure",
|
||||
"Custom compliance frameworks",
|
||||
"On-premise deployment options",
|
||||
"SLA guarantees",
|
||||
"Custom development services",
|
||||
],
|
||||
id: "enterprise", tag: "Enterprise Plan", price: "Custom", period: "/month", description: "Tailored solutions for large-scale operations with premium support and custom requirements.", button: {
|
||||
text: "Contact Sales", href: "/contact"},
|
||||
featuresTitle: "What's Included:", features: [
|
||||
"Unlimited everything", "Unlimited data storage", "Military-grade security", "24/7 dedicated support team", "Global infrastructure", "Custom compliance frameworks", "On-premise deployment options", "SLA guarantees", "Custom development services"],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user