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