import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import type { PricingTier } from "@/data/wix/pricing"; export default function PricingTable({ tiers }: { tiers: PricingTier[] }) { return (
{tiers.map((t) => ( {t.name} {t.description}
{t.price}
    {t.features.map((f, i) => (
  • {f}
  • ))}
))}
); }