import Link from "next/link" import { Button } from "@/components/ui/button" import { Card, CardContent, CardHeader } from "@/components/ui/card" import { Check, X, ArrowRight, Sparkles, Star, Zap } from "lucide-react" const tiers = [ { name: "Starter", tagline: "Perfect for small businesses", price: "$2,999", icon: Sparkles, gradient: "from-blue-500 to-cyan-400", popular: false, features: [ { name: "Custom design (up to 5 pages)", included: true }, { name: "Responsive layout", included: true }, { name: "Contact form", included: true }, { name: "Basic SEO setup", included: true }, { name: "1 round of revisions", included: true }, { name: "CMS integration", included: false }, { name: "E-commerce functionality", included: false }, { name: "Priority support", included: false }, ], }, { name: "Professional", tagline: "Most popular for growing brands", price: "$7,499", icon: Star, gradient: "from-primary to-blue-500", popular: true, features: [ { name: "Custom design (up to 15 pages)", included: true }, { name: "Responsive layout", included: true }, { name: "Advanced forms & integrations", included: true }, { name: "Full SEO optimization", included: true }, { name: "3 rounds of revisions", included: true }, { name: "CMS integration", included: true }, { name: "E-commerce functionality", included: false }, { name: "Priority support", included: true }, ], }, { name: "Enterprise", tagline: "For ambitious, large-scale projects", price: "Custom", icon: Zap, gradient: "from-violet-600 to-purple-500", popular: false, features: [ { name: "Unlimited pages & features", included: true }, { name: "Responsive layout", included: true }, { name: "Custom integrations & APIs", included: true }, { name: "Full SEO optimization", included: true }, { name: "Unlimited revisions", included: true }, { name: "CMS integration", included: true }, { name: "E-commerce functionality", included: true }, { name: "Priority support", included: true }, ], }, ] export function PackageComparison() { return (

Pricing

Choose Your Package

Transparent pricing with no hidden fees. Every package includes a dedicated project manager and quality assurance.

{tiers.map((tier, i) => (
{tier.popular && (
Most Popular
)}

{tier.name}

{tier.tagline}

{tier.price} {tier.price !== "Custom" && starting}
    {tier.features.map((feature) => (
  • {feature.included ? ( ) : ( )} {feature.name}
  • ))}
))}
) }