From baad6b78dfff48001a26a6252339fb8241b63ab9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 30 May 2026 13:40:40 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 503293d..6975475 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,11 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia import { Facebook, Home, Instagram, Linkedin, Twitter, Users, CheckCircle, Star } from "lucide-react"; export default function LandingPage() { + const whatsappMessage = 'مرحبًا، أود الاستفسار عن أحد العقارات المعروضة على منصة النجوم السبعة للعقارات.'; + const whatsappNumber = '971501234567'; // Placeholder for office WhatsApp + const encodedWhatsappMessage = encodeURIComponent(whatsappMessage); + const whatsappLink = `https://wa.me/${whatsappNumber}?text=${encodedWhatsappMessage}`; + return ( @@ -219,6 +229,11 @@ export default function LandingPage() { description="تعرف على فريقنا من الخبراء العقاريين المعتمدين والوكالات الموثوقة لدينا، مع تقييماتهم الحقيقية من العملاء." tag="تقييمات الوسطاء" tagIcon={Star} + buttons={[ + { + text: "تحدث مع وسيط عبر واتساب", href: whatsappLink + } + ]} /> @@ -271,6 +286,9 @@ export default function LandingPage() { text: "تحدث مع خبير", href: "/contact"}, { text: "اطلب عقاراً", href: "/contact"}, + { + text: "تواصل عبر واتساب", href: whatsappLink + } ]} />