import React from "react"; import { Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from "../ui/dialog"; import { FaCheckCircle } from "react-icons/fa"; const LOGOS = ["microsoft", "amazon", "mit", "stanford", "bytedance", "baidu"]; const PricingDialog: React.FC = () => { return ( buy 100 code generations for $15 Save Hours of Development Time
{/* Free Plan */}

Hobby

Great to start

$15 {/* / month */}
  • 100 credits
  • Email support
{/* Economy Plan */}

Pro

Higher limits

$40 {/* / month */}
  • 300 credits
  • Slack support

1 credit = 1 code generation. Unused credits expire after 90 days.

{/* Logos */}
{LOGOS.map((companyName) => ( {companyName} ))}
Designers and engineers from these organizations use Screenshot to Code to build interfaces faster.
); }; export default PricingDialog;