pricing updated

This commit is contained in:
jhpin2 2025-02-27 14:48:31 +06:00
parent 19a0385e3c
commit f3bf6123d6

View file

@ -5,6 +5,7 @@ import { Check, X } from "lucide-react";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { Switch } from "@/components/ui/switch"; import { Switch } from "@/components/ui/switch";
import { Label } from "@/components/ui/label"; import { Label } from "@/components/ui/label";
import Link from "next/link";
interface PricingFeature { interface PricingFeature {
name: string; name: string;
@ -50,7 +51,7 @@ export default function PricingSection() {
name: "Startup", name: "Startup",
users: "2 user", users: "2 user",
monthlyPrice: "$19", monthlyPrice: "$19",
yearlyPrice: "$190", yearlyPrice: "$10",
description: description:
"Access core tools to launch and manage your business efficiently", "Access core tools to launch and manage your business efficiently",
features: [ features: [
@ -71,7 +72,7 @@ export default function PricingSection() {
name: "Growth", name: "Growth",
users: "10 user", users: "10 user",
monthlyPrice: "$79", monthlyPrice: "$79",
yearlyPrice: "$790", yearlyPrice: "$50",
description: description:
"Advanced features to boost productivity and expand your reach", "Advanced features to boost productivity and expand your reach",
highlight: true, highlight: true,
@ -93,7 +94,7 @@ export default function PricingSection() {
name: "Agency Pro", name: "Agency Pro",
users: "50 user", users: "50 user",
monthlyPrice: "$300", monthlyPrice: "$300",
yearlyPrice: "$3000", yearlyPrice: "$150",
description: description:
"Premium solutions for maximizing growth and efficiency for agency", "Premium solutions for maximizing growth and efficiency for agency",
features: [ features: [
@ -174,15 +175,17 @@ export default function PricingSection() {
</div> </div>
))} ))}
</div> </div>
<Button <Link href="https://dashboard.planpostai.com/">
className={`w-full ${ <Button
tier.highlight className={`w-full ${
? "bg-white text-[#7c3aed] hover:bg-gray-100" tier.highlight
: "bg-[#7c3aed] text-white hover:bg-[#6d31d9]" ? "bg-white text-[#7c3aed] hover:bg-gray-100"
}`} : "bg-[#7c3aed] text-white hover:bg-[#6d31d9]"
> }`}
Choose Plan >
</Button> Choose Plan
</Button>
</Link>
</div> </div>
))} ))}
</div> </div>