File size: 2,017 Bytes
17b60d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dc436d6
17b60d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import React from 'react';
import { Target, Maximize, Zap, Code2 } from 'lucide-react';

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

  return (
    <section id="features" className="py-24 bg-black">
      <div className="max-w-7xl mx-auto px-6">
        <div className="flex justify-center mb-8">
          <span className="px-4 py-1.5 rounded-full border border-gray-700 text-sm text-gray-300">Product Overview</span>
        </div>
        
        <h2 className="text-3xl md:text-5xl font-semibold text-center max-w-4xl mx-auto leading-tight mb-20">
          Create realistic simulations of your target audience to instantly test brand narratives, voice, and campaign ideas
        </h2>

        <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
          {features.map((feature, idx) => (
            <div key={idx} className="p-8 border border-gray-800 rounded-2xl hover:border-gray-600 transition-colors bg-gray-900/20">
              <div className="w-12 h-12 rounded-full border border-gray-700 flex items-center justify-center mb-6 text-white">
                {feature.icon}
              </div>
              <h3 className="text-xl font-medium mb-3">{feature.title}</h3>
              <p className="text-gray-400 leading-relaxed">{feature.desc}</p>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
};

export default ProductOverview;