From f3bf6123d62985dea7f48218b49e82325a8a4c40 Mon Sep 17 00:00:00 2001 From: jhpin2 Date: Thu, 27 Feb 2025 14:48:31 +0600 Subject: [PATCH] pricing updated --- src/components/PricingSection.tsx | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/src/components/PricingSection.tsx b/src/components/PricingSection.tsx index 33cf452..09c8b36 100644 --- a/src/components/PricingSection.tsx +++ b/src/components/PricingSection.tsx @@ -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,15 +175,17 @@ export default function PricingSection() { ))} - + + + ))}