diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..003b5f0 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,92 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { Sparkles, Video, Zap } from "lucide-react"; + +export function Hero() { + return ( +
+ {/* Background gradient */} +
+ + {/* Animated background elements */} +
+
+
+ + +
+ {/* Badge */} +
+ + + AI-Powered Video Editing + +
+ + {/* Main heading */} + + Turn Raw Clips Into{" "} + + Viral Reels + {" "} + in Minutes + + + {/* Subheading */} + + Upload your video, describe your vision, and let AI handle the editing. + Fast cuts, music sync, text overlays, and professional transitions—all automated. + + + {/* CTA buttons */} +
+ + +
+ + {/* Stats */} +
+
+
10M+
+
Videos Edited
+
+
+
2.5x
+
Faster Editing
+
+
+
98%
+
Satisfaction Rate
+
+
+
+
+ + +
+ ); +}