From b417bd58617609251973c853f8028299cd641886 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 14:06:53 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 113 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..9cc56a7 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,113 @@ +"use client"; + +import Balancer from "react-wrap-balancer"; +import { Button } from "./ui/button"; +import { HiArrowRight } from "react-icons/hi2"; +import { Badge } from "./badge"; +import { motion } from "framer-motion"; + +import Image from "next/image"; +import { useRouter } from "next/navigation"; +import Link from "next/link"; + +export const Hero = () => { + const router = useRouter(); + return ( +
+ + router.push("/blog/top-5-llm-of-all-time")}> + {/* removed badge */} + + + + We build your predictable outbound engine. You only show up to close. + + + + R3venue books qualified sales calls for B2B SaaS and service businesses using hyper-personalized cold email and Clay-style enrichment. No spray and pray. Just high-intent pipeline. + + + + + + +
+
+
+
+ Predictable Pipeline Engine +
+
+
+
+ ); +};