"use client"; import { motion } from "framer-motion"; import { Zap, Search, Target } from "lucide-react"; import { cn } from "@/lib/utils"; const features = [ { title: "AI Analysis", description: "We scrape your website and use GPT-4 to extract features, pain points, and keywords automatically.", icon: Zap, className: "md:col-span-2", }, { title: "Smart Dorking", description: "Our system generates targeted Google dork queries to find high-intent posts across Reddit, HN, and more.", icon: Search, className: "md:col-span-1", }, { title: "Scored Leads", description: "Each opportunity is scored by relevance and comes with suggested engagement approaches.", icon: Target, className: "md:col-span-3", }, ]; const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.5, ease: "easeOut", }, }, }; export function FeaturesSection() { return (
{features.map((feature, i) => (

{feature.title}

{feature.description}

))}
); }