From 17b83a66189de4d7937ab3f001ceffd53e6827f9 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:57:26 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 57 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..05b7281 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,57 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { motion } from "framer-motion"; +import Image from "next/image"; + +export function Hero() { + return ( +
+ +
+ + + Scale Your Business with High-Quality Leads + + + Astra Leads helps B2B companies fill their pipelines with qualified prospects. We handle the outreach, you close the deals. + + + + + Lead Generation Dashboard + +
+
+ + {/* Background Decoration */} +
+
+
+
+
+ ); +}