From 5b284a73a6b09f6008a2fed9548f90e9564b39d2 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 17:34:14 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 90 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..51b0302 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,90 @@ +"use client"; +import { Container } from "@/components/container"; +import { Button } from "@/components/ui/button"; +import { Sparkles, TrendingUp, Zap } from "lucide-react"; + +export function Hero() { + const scrollToPricing = () => { + document.getElementById('pricing')?.scrollIntoView({ behavior: 'smooth' }); + }; + + return ( +
+ {/* Golden gradient background */} +
+ + {/* Animated golden particles */} +
+
+
+
+
+
+ + +
+ {/* Badge */} +
+ + عرض محدود - سجلي الآن! +
+ + {/* Main Headline */} +

+ ابدئي مشروعك الرقمي +
+ من الصفر إلى الربح +

+ + {/* Subheadline */} +

+ تعلمي التسويق عبر إنستغرام، صناعة المحتوى، والذكاء الاصطناعي +
+ بدون خبرة، بدون رأس مال، بدون جمهور كبير +

+ + {/* Features Icons */} +
+
+ + نتائج سريعة +
+
+ + محتوى جاهز +
+
+ + ذكاء اصطناعي +
+
+ + {/* CTA Buttons */} +
+ + +
+ + {/* Trust Badge */} +

+ ✨ انضمت أكثر من 500+ طالبة وحققن نتائج مذهلة +

+
+
+
+ ); +}