diff --git a/components/testimonials.tsx b/components/testimonials.tsx new file mode 100644 index 0000000..fdffc95 --- /dev/null +++ b/components/testimonials.tsx @@ -0,0 +1,78 @@ +"use client"; +import { Container } from "@/components/container"; +import { Card } from "@/components/ui/card"; +import { Star, Quote } from "lucide-react"; + +export function Testimonials() { + const testimonials = [ + { + name: "سارة أحمد", + text: "بدأت من الصفر واليوم عندي أول عميلة… شكراً على كل شيء!", + rating: 5 + }, + { + name: "نور محمد", + text: "الكورس غير حياتي، خاصة قسم الذكاء الاصطناعي.", + rating: 5 + }, + { + name: "ليلى حسن", + text: "صفحة الهبوط اللي تعلمتها ساعدتني أبيع أول منتج رقمي.", + rating: 5 + } + ]; + + return ( +
+ +
+

+ آراء الزبائن +

+

+ ماذا تقول الطالبات عن الكورس؟ +

+
+ +
+ {testimonials.map((testimonial, index) => ( + + + +
+
+ {[...Array(testimonial.rating)].map((_, i) => ( + + ))} +
+ +

+ "{testimonial.text}" +

+ +
+
+ {testimonial.name.charAt(0)} +
+
+

{testimonial.name}

+

طالبة في الكورس

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

+ 500+ طالبة سعيدة بالنتائج ✨ +

+
+
+
+ ); +}