mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
|
import { Check } from "lucide-react"
|
||
|
import { Button } from "@/components/ui/button"
|
||
|
|
||
|
const plans = [
|
||
|
{
|
||
|
name: "Basic",
|
||
|
price: "$9",
|
||
|
features: ["5 team members", "10 projects", "Basic analytics", "Email support"],
|
||
|
},
|
||
|
{
|
||
|
name: "Pro",
|
||
|
price: "$29",
|
||
|
features: ["Unlimited team members", "Unlimited projects", "Advanced analytics", "Priority support"],
|
||
|
},
|
||
|
{
|
||
|
name: "Enterprise",
|
||
|
price: "Custom",
|
||
|
features: ["Custom features", "Dedicated account manager", "On-premise deployment", "24/7 phone support"],
|
||
|
},
|
||
|
]
|
||
|
|
||
|
export default function Pricing() {
|
||
|
return (
|
||
|
<section id="pricing" className="py-20 bg-gray-50">
|
||
|
<div className="container mx-auto">
|
||
|
<h2 className="text-3xl font-bold text-center mb-12">Choose Your Plan</h2>
|
||
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||
|
{plans.map((plan, index) => (
|
||
|
<div key={index} className="bg-white p-8 rounded-lg shadow-md">
|
||
|
<h3 className="text-2xl font-bold mb-4">{plan.name}</h3>
|
||
|
<p className="text-4xl font-bold mb-6">
|
||
|
{plan.price}
|
||
|
<span className="text-lg font-normal text-gray-600">/month</span>
|
||
|
</p>
|
||
|
<ul className="mb-8">
|
||
|
{plan.features.map((feature, featureIndex) => (
|
||
|
<li key={featureIndex} className="flex items-center mb-2">
|
||
|
<Check className="h-5 w-5 text-primary mr-2" />
|
||
|
<span>{feature}</span>
|
||
|
</li>
|
||
|
))}
|
||
|
</ul>
|
||
|
<Button className="w-full" variant={index === 1 ? "default" : "outline"}>
|
||
|
{index === 2 ? "Contact Sales" : "Get Started"}
|
||
|
</Button>
|
||
|
</div>
|
||
|
))}
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
)
|
||
|
}
|
||
|
|