From 124f43321adf763a706f450ccf96d0668979ddf7 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:57:39 +0000 Subject: [PATCH] Update components/features.tsx --- components/features.tsx | 68 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 components/features.tsx diff --git a/components/features.tsx b/components/features.tsx new file mode 100644 index 0000000..8919272 --- /dev/null +++ b/components/features.tsx @@ -0,0 +1,68 @@ +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} + +
+
+ ))} +
+
+
+ ); +}