import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { plans } from "../data/pricing-data"; import { Button } from "@/components/ui/button"; export default function Pricing() { return (

Pricing Plans

Prices are subject to change. These estimates help guide your decision.

{plans.map((plan, index) => ( {plan.title}

{plan.price}

{plan.description}

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