From a87828bcc33841521e4032bfb3e4907e5e113e11 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 17:33:51 +0000 Subject: [PATCH] Update components/results.tsx --- components/results.tsx | 63 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 components/results.tsx diff --git a/components/results.tsx b/components/results.tsx new file mode 100644 index 0000000..8c53d24 --- /dev/null +++ b/components/results.tsx @@ -0,0 +1,63 @@ +"use client"; +import { Container } from "@/components/container"; +import { Card } from "@/components/ui/card"; +import { Trophy, Target, Rocket, Star, TrendingUp } from "lucide-react"; + +export function Results() { + const results = [ + { icon: Trophy, title: "حساب إنستغرام احترافي", description: "جاهز للنمو والتفاعل" }, + { icon: Target, title: "محتوى يومي جاهز", description: "خطة محتوى كاملة لشهر" }, + { icon: Rocket, title: "أول منتج رقمي جاهز للبيع", description: "تبدأين البيع فوراً" }, + { icon: Star, title: "أول عميل خلال 14 يوم", description: "حسب التزامك وتطبيقك" }, + { icon: TrendingUp, title: "فهم كامل للذكاء الاصطناعي", description: "استخدميه لزيادة دخلك" }, + ]; + + return ( +
+ +
+

+ النتائج التي +
+ ستحصلين عليها +

+

+ نتائج ملموسة وقابلة للتطبيق من اليوم الأول +

+
+ +
+ {results.map((result, index) => ( + +
+
+ +
+

+ {result.title} +

+

+ {result.description} +

+
+
+ ))} +
+ +
+ +

+ 🎯 نتائج حقيقية، قابلة للقياس +

+

+ كل طالبة تطبق المحتوى تحقق نتائج ملموسة +

+
+
+
+
+ ); +}