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}
  • ))}
))}
); }