From dd0fab6ed63a8cd2305bb89275ad8919ec9ddb6d Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:42:03 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 118 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..e8d6326 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,118 @@ +"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")}> + We've raised $69M seed funding + + + + Generate Images, Text and Videos with AI + + + + [App Name] provides everything you need to build, deploy, and scale + your applications with powerful features and intuitive design. + + + + + + +
+
+
+ header +
+
+
+ ); +};