diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..db2d247 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,95 @@ +"use client"; +import { Container } from "@/components/container"; +import { motion } from "framer-motion"; +import { ArrowRight } from "lucide-react"; + +export function Hero() { + return ( +
+ {/* Animated background grid */} +
+ + {/* Gradient orbs */} +
+
+ + + + + + Award-Winning Creative Agency + + + + + We Craft +
+ Digital Magic +
+ + + Transforming bold ideas into exceptional digital experiences. + We design, develop, and deliver products that captivate and convert. + + + + + View Our Work + + + + Start a Project + + +
+ + {/* Scroll indicator */} + +
+ +
+
+
+
+ ); +}