From a7d8aa334abdda7f527601c5a0a658744b31faaa Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 17:33:50 +0000 Subject: [PATCH] Update components/course-content.tsx --- components/course-content.tsx | 78 +++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 components/course-content.tsx diff --git a/components/course-content.tsx b/components/course-content.tsx new file mode 100644 index 0000000..acdb6d4 --- /dev/null +++ b/components/course-content.tsx @@ -0,0 +1,78 @@ +"use client"; +import { Container } from "@/components/container"; +import { Card } from "@/components/ui/card"; +import { + Store, + TrendingUp, + ShoppingCart, + Video, + Instagram, + Sparkles, + Package, + Film, + Zap, + EyeOff, + Users +} from "lucide-react"; + +export function CourseContent() { + const modules = [ + { icon: Store, title: "بناء متاجر مجاناً", color: "text-amber-600" }, + { icon: TrendingUp, title: "التسويق الرقمي", color: "text-yellow-600" }, + { icon: ShoppingCart, title: "البيع أونلاين", color: "text-orange-600" }, + { icon: Video, title: "صناعة المحتوى", color: "text-amber-700" }, + { icon: Instagram, title: "كيف أصعد حسابي على الانستغرام", color: "text-pink-600" }, + { icon: Sparkles, title: "كيف أوظف الذكاء الاصطناعي لصالحي", color: "text-purple-600" }, + { icon: Package, title: "كيف أصنع منتج رقمي", color: "text-blue-600" }, + { icon: Film, title: "كيف أعمل ريلز احترافي", color: "text-red-600" }, + { icon: Zap, title: "كيف أسوي نظام بيع أوتوماتيكي", color: "text-green-600" }, + { icon: EyeOff, title: "كيف أنجح بدون ظهور على الكاميرا", color: "text-indigo-600" }, + { icon: Users, title: "بناء حساب إنستغرام احترافي", color: "text-amber-600" }, + ]; + + return ( +
+ +
+

+ محتوى الكورس +

+

+ كل ما تحتاجينه لبناء مشروع رقمي ناجح من الصفر +

+
+ +
+ {modules.map((module, index) => ( + +
+
+ +
+
+

+ {module.title} +

+
+
+
+ ))} +
+ +
+
+

+ 11+ وحدة تعليمية شاملة ومفصلة +

+

+ كل وحدة مصممة خصيصاً للمبتدئات +

+
+
+
+
+ ); +}