From 12c6b6187edf88f00b1767d185c34d7903fee45c Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 17:33:53 +0000 Subject: [PATCH] Update components/final-cta.tsx --- components/final-cta.tsx | 76 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 components/final-cta.tsx diff --git a/components/final-cta.tsx b/components/final-cta.tsx new file mode 100644 index 0000000..d340952 --- /dev/null +++ b/components/final-cta.tsx @@ -0,0 +1,76 @@ +"use client"; +import { Container } from "@/components/container"; +import { Button } from "@/components/ui/button"; +import { Sparkles, ArrowLeft } from "lucide-react"; + +export function FinalCTA() { + const scrollToPricing = () => { + document.getElementById('pricing')?.scrollIntoView({ behavior: 'smooth' }); + }; + + return ( +
+ {/* Golden gradient background */} +
+ + {/* Animated particles */} +
+
+
+
+
+
+ + +
+
+ +
+ +

+ ابدئي الآن +

+ +

+ افتحي باب الدخل الرقمي اليوم +
+ بخطوات بسيطة ونتائج مضمونة +

+ +
+ +
+ +
+

+ ✅ دفعة واحدة فقط +

+

+ ✅ وصول مدى الحياة +

+

+ ✅ ضمان استرجاع المال +

+
+ +
+

+ ⏰ العرض محدود - لا تفوتي الفرصة! +

+

+ انضمي لـ 500+ طالبة بدأن رحلتهن نحو الحرية المالية +

+
+
+
+
+ ); +}