From 4cd5cd68c23934a89ea911c579e9df3d4c4cd3ba Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 17:33:56 +0000 Subject: [PATCH] Update components/pricing.tsx --- components/pricing.tsx | 96 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 components/pricing.tsx diff --git a/components/pricing.tsx b/components/pricing.tsx new file mode 100644 index 0000000..6465976 --- /dev/null +++ b/components/pricing.tsx @@ -0,0 +1,96 @@ +"use client"; +import { Container } from "@/components/container"; +import { Card } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { Check, Sparkles, Clock } from "lucide-react"; + +export function Pricing() { + const features = [ + "11+ وحدة تعليمية شاملة", + "قوالب وأدوات جاهزة", + "دعم مباشر من حنان", + "تحديثات مجانية مدى الحياة", + "مجموعة خاصة للطالبات", + "شهادة إتمام الكورس" + ]; + + return ( +
+ +
+

+ السعر الحالي +

+

+ عرض محدود - لن يتكرر! +

+
+ +
+ + {/* Limited offer badge */} +
+ + عرض محدود +
+ +
+
+ +
+ +

+ كورس التسويق الرقمي الشامل +

+ +
+ + $39 + +
+ +

+ (السعر سيرتفع قريباً إلى $99) +

+ +
+

+ ⏰ العرض ينتهي خلال 48 ساعة +

+
+
+ +
+ {features.map((feature, index) => ( +
+ + {feature} +
+ ))} +
+ + + +

+ ✅ دفعة واحدة فقط - بدون اشتراك شهري +
+ ✅ ضمان استرجاع المال خلال 7 أيام +

+
+ +
+

+ 💳 طرق دفع آمنة ومتعددة +

+
+
+
+
+ ); +}