"use client";

import type { PricingSectionCopy } from "@/sections/PricingSection";
import type { PlanCatalogId } from "@/lib/planCatalogs";

interface CreationPlansSectionProps {
  catalog: PlanCatalogId;
  copy?: PricingSectionCopy;
  sectionId?: string;
}

/**
 * Planos de criação não são exibidos no site público.
 * Contratação de desenvolvimento: /dashboard/criar-meu-app (após planejamento ativo).
 */
export function CreationPlansSection(_props: CreationPlansSectionProps) {
  return null;
}
