From 7dc5c8c76aabdb871949cacb0be7610e7f1d2732 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:54:51 +0000 Subject: [PATCH] Update components/pricing.tsx --- components/pricing.tsx | 87 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 components/pricing.tsx diff --git a/components/pricing.tsx b/components/pricing.tsx new file mode 100644 index 0000000..d02df26 --- /dev/null +++ b/components/pricing.tsx @@ -0,0 +1,87 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { Check } from "lucide-react"; + +const tiers = [ + { + name: "Starter", + price: "$499", + description: "Perfect for small local businesses and personal brands.", + features: ["5 Pages", "Mobile Responsive", "Basic SEO", "Contact Form", "1 Month Support"], + cta: "Get Started", + highlighted: false, + }, + { + name: "Business", + price: "$999", + description: "The best value for growing companies and restaurants.", + features: ["10 Pages", "Advanced SEO", "Custom Animations", "CMS Integration", "3 Months Support", "Free Domain (1yr)"], + cta: "Most Popular", + highlighted: true, + }, + { + name: "Enterprise", + price: "Custom", + description: "Tailored solutions for complex needs and large scale apps.", + features: ["Unlimited Pages", "E-commerce Ready", "Priority Support", "Custom Integrations", "Performance Audit", "Monthly Maintenance"], + cta: "Contact Us", + highlighted: false, + }, +]; + +export function Pricing() { + return ( +
+ +
+ Simple, Transparent Pricing + + Choose the plan that fits your business needs. No hidden fees, ever. + +
+
+ {tiers.map((tier, index) => ( +
+ {tier.highlighted && ( + + Best Value + + )} +
+

{tier.name}

+
+ {tier.price} + {tier.price !== "Custom" && /project} +
+

{tier.description}

+
+
    + {tier.features.map((feature, i) => ( +
  • + + {feature} +
  • + ))} +
+ +
+ ))} +
+
+
+ ); +}