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() {
))}
-
+
+
+
))}