import React from 'react'; import { Target, Maximize, Zap, Code2 } from 'lucide-react'; const ProductOverview: React.FC = () => { const features = [ { icon: , title: "Targeted", desc: "Accurately model even hard-to-reach audiences via API." }, { icon: , title: "Scalable", desc: "Run thousands of concurrent simulations." }, { icon: , title: "Low Latency", desc: "Get actionable insights in your pipeline in seconds." }, { icon: , title: "Free for Devs", desc: "Generous free tier to build and test your integration." } ]; return (
Product Overview

Create realistic simulations of your target audience to instantly test brand narratives, voice, and campaign ideas

{features.map((feature, idx) => (
{feature.icon}

{feature.title}

{feature.desc}

))}
); }; export default ProductOverview;