import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; import { Target, Zap, BarChart3, Users, Mail, PhoneCall } from "lucide-react"; const features = [ { title: "Targeted Prospecting", description: "We identify and reach out to your ideal customer profile using advanced data filtering.", icon: Target, }, { title: "Cold Email Outreach", description: "Personalized, high-converting email campaigns that land in the inbox, not the spam folder.", icon: Mail, }, { title: "LinkedIn Automation", description: "Strategic LinkedIn outreach to build relationships with key decision-makers.", icon: Zap, }, { title: "Appointment Setting", description: "We book the meetings directly into your calendar so you can focus on selling.", icon: PhoneCall, }, { title: "Lead Qualification", description: "Every lead is vetted to ensure they have the budget, authority, and need for your service.", icon: Users, }, { title: "Performance Tracking", description: "Real-time dashboards to track campaign performance, open rates, and ROI.", icon: BarChart3, }, ]; export function Features() { return (
Our Lead Generation Engine Everything you need to scale your sales pipeline and hit your revenue targets.
{features.map((feature, index) => (
{feature.title} {feature.description}
))}
); }