From 17904ed2f07ad019436e0188e39a5df0ee920bfa Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:30:27 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 51 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..b23a39d --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,51 @@ +"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"; + +export function Hero() { + return ( +
+
+ +
+ + + Predator AI Solutions + + + + + + Powerful AI-driven systems that automate operations, analyze data, and help you make faster, smarter decisions. + + + + + + + +
+
+
+ ); +}