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 +
+
+
+
+ ); +};