Spaces:
Running
Running
<html lang="ar" dir="rtl"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>إيفا – المساعدة الذكية | دليل عسير الذكي</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap'); | |
body { | |
font-family: 'Tajawal', sans-serif; | |
background-color: #f8f9fa; | |
} | |
.hero-gradient { | |
background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%); | |
} | |
.feature-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
} | |
.language-badge { | |
transition: all 0.3s ease; | |
} | |
.language-badge:hover { | |
transform: scale(1.05); | |
} | |
.eva-avatar { | |
animation: float 6s ease-in-out infinite; | |
} | |
@keyframes float { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-15px); } | |
100% { transform: translateY(0px); } | |
} | |
.chat-demo { | |
background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%); | |
border-radius: 20px; | |
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); | |
} | |
.chat-bubble { | |
max-width: 80%; | |
border-radius: 18px; | |
position: relative; | |
padding: 12px 16px; | |
margin-bottom: 12px; | |
} | |
/* أنماط إضافية لشخصية إيفا */ | |
#eva-assistant { | |
transform: translateX(0); | |
transition: transform 0.3s ease; | |
} | |
#eva-assistant.hidden { | |
transform: translateX(-120%); | |
} | |
#eva-chat { | |
scrollbar-width: thin; | |
scrollbar-color: #6366f1 #f1f1f1; | |
} | |
#eva-chat::-webkit-scrollbar { | |
width: 6px; | |
} | |
#eva-chat::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} | |
#eva-chat::-webkit-scrollbar-thumb { | |
background-color: #6366f1; | |
border-radius: 3px; | |
} | |
.chat-bubble:after { | |
content: ''; | |
position: absolute; | |
bottom: -8px; | |
width: 0; | |
height: 0; | |
border-style: solid; | |
} | |
.eva-bubble { | |
background-color: #6366f1; | |
color: white; | |
margin-right: auto; | |
} | |
.eva-bubble:after { | |
right: 15px; | |
border-width: 10px 15px 0 0; | |
border-color: #6366f1 transparent transparent transparent; | |
} | |
.user-bubble { | |
background-color: #e5e7eb; | |
color: #111827; | |
margin-left: auto; | |
} | |
.user-bubble:after { | |
left: 15px; | |
border-width: 10px 0 0 15px; | |
border-color: #e5e7eb transparent transparent transparent; | |
} | |
.typing-indicator { | |
display: flex; | |
padding: 10px; | |
} | |
.typing-dot { | |
width: 8px; | |
height: 8px; | |
background-color: #9ca3af; | |
border-radius: 50%; | |
margin: 0 2px; | |
animation: typing 1.4s infinite ease-in-out; | |
} | |
.typing-dot:nth-child(1) { animation-delay: 0s; } | |
.typing-dot:nth-child(2) { animation-delay: 0.2s; } | |
.typing-dot:nth-child(3) { animation-delay: 0.4s; } | |
@keyframes typing { | |
0%, 60%, 100% { transform: translateY(0); } | |
30% { transform: translateY(-5px); } | |
} | |
</style> | |
</head> | |
<body class="text-gray-800"> | |
<!-- شخصية إيفا التفاعلية --> | |
<div id="eva-assistant" class="fixed bottom-6 left-6 z-50 w-72 bg-white rounded-xl shadow-xl overflow-hidden transition-all duration-300 transform hover:scale-105"> | |
<div class="bg-indigo-600 text-white p-4 flex items-center"> | |
<div class="w-12 h-12 rounded-full bg-white flex items-center justify-center mr-3"> | |
<img src="https://via.placeholder.com/50?text=إيفا" alt="إيفا" class="w-10 h-10 rounded-full"> | |
</div> | |
<div> | |
<h3 class="font-bold">إيفا المساعدة الذكية</h3> | |
<p class="text-xs opacity-90">متاحة لمساعدتك الآن</p> | |
</div> | |
<button id="eva-close" class="ml-auto text-white opacity-70 hover:opacity-100"> | |
<i class="fas fa-times"></i> | |
</button> | |
</div> | |
<div id="eva-chat" class="p-4 bg-gray-50 h-48 overflow-y-auto"> | |
<div class="chat-bubble eva-bubble"> | |
مرحباً! أنا إيفا، مرشدتك الذكية في عسير. كيف يمكنني مساعدتك اليوم؟ | |
</div> | |
</div> | |
<div class="p-3 bg-white border-t flex"> | |
<input id="eva-input" type="text" placeholder="اكتب سؤالك..." class="flex-1 border rounded-l-lg px-3 py-2 focus:outline-none focus:ring-1 focus:ring-indigo-500"> | |
<button id="eva-send" class="bg-indigo-600 text-white px-4 rounded-r-lg hover:bg-indigo-700"> | |
<i class="fas fa-paper-plane"></i> | |
</button> | |
</div> | |
<div class="eva-actions grid grid-cols-2 gap-2 p-3 bg-gray-50"> | |
<button class="eva-action bg-white text-indigo-600 px-3 py-2 rounded-lg text-sm font-medium hover:bg-indigo-50 border border-indigo-100"> | |
<i class="fas fa-map-marked-alt mr-1"></i> اقترح مسارًا | |
</button> | |
<button class="eva-action bg-white text-indigo-600 px-3 py-2 rounded-lg text-sm font-medium hover:bg-indigo-50 border border-indigo-100"> | |
<i class="fas fa-utensils mr-1"></i> مطاعم قريبة | |
</button> | |
</div> | |
</div> | |
<!-- شريط التنقل --> | |
<nav class="bg-white shadow-lg sticky top-0 z-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<a href="#" class="flex-shrink-0 flex items-center"> | |
<img class="h-8 w-auto" src="https://via.placeholder.com/150x50?text=دليل+عسير" alt="دليل عسير الذكي"> | |
</a> | |
</div> | |
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-4 space-x-reverse"> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الرئيسية</a> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الوجهات</a> | |
<a href="#" class="text-indigo-600 px-3 py-2 text-sm font-medium">إيفا المساعدة</a> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الفعاليات</a> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الأسئلة الشائعة</a> | |
</div> | |
<div class="flex items-center"> | |
<button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
حمل التطبيق | |
</button> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- قسم البطل --> | |
<section class="hero-gradient text-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 md:py-24"> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center"> | |
<div class="text-center md:text-right space-y-6"> | |
<h1 class="text-4xl md:text-5xl font-bold leading-tight"> | |
مرشدتك الذكية إلى قلب عسير | |
</h1> | |
<p class="text-xl md:text-2xl opacity-90"> | |
إيفا هي شخصية افتراضية تعتمد على الذكاء الاصطناعي لمرافقتك طوال رحلتك في عسير، وتقديم توصيات مخصصة بناءً على وقتك، اهتماماتك، وموقعك الحالي. | |
</p> | |
<div class="flex flex-col sm:flex-row gap-4 justify-center md:justify-start"> | |
<button class="bg-white text-indigo-600 px-8 py-3 rounded-lg text-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg"> | |
ابدأ الرحلة مع إيفا | |
</button> | |
<button class="border-2 border-white text-white px-8 py-3 rounded-lg text-lg font-bold hover:bg-white hover:bg-opacity-10 transition duration-300"> | |
شاهد الفيديو التوضيحي | |
</button> | |
</div> | |
</div> | |
<div class="flex justify-center"> | |
<div class="eva-avatar relative"> | |
<img src="https://via.placeholder.com/400x500?text=صورة+إيفا" alt="إيفا المساعدة الذكية" class="w-full max-w-md rounded-lg shadow-2xl"> | |
<div class="absolute -bottom-5 -right-5 bg-white text-indigo-600 px-4 py-2 rounded-full shadow-lg font-bold"> | |
<i class="fas fa-robot mr-2"></i> الذكاء الاصطناعي | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- من هي إيفا؟ --> | |
<section class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900">من هي إيفا؟</h2> | |
<div class="w-24 h-1 bg-indigo-600 mx-auto mt-4"></div> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center"> | |
<div> | |
<p class="text-lg text-gray-600 mb-6"> | |
إيفا هي مزيج من الذكاء الاصطناعي والتفاعل الصوتي البشري، تتحدث إليك باللهجة المحلية أو اللغة التي تختارها، وتقدم لك تجربة سياحية ثقافية وغنية. | |
</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600"> | |
<i class="fas fa-comments text-xl"></i> | |
</div> | |
<div class="mr-4"> | |
<h3 class="text-lg font-semibold text-gray-900">تفاعل طبيعي</h3> | |
<p class="text-gray-600">تتفاعل معك صوتيًا أو كتابيًا بسلاسة وكأنك تتحدث مع مرشد سياحي حقيقي.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600"> | |
<i class="fas fa-route text-xl"></i> | |
</div> | |
<div class="mr-4"> | |
<h3 class="text-lg font-semibold text-gray-900">تخصيص الرحلات</h3> | |
<p class="text-gray-600">تحلل تفضيلاتك لتبني جدول رحلات مخصص يناسب وقتك واهتماماتك.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600"> | |
<i class="fas fa-map-marked-alt text-xl"></i> | |
</div> | |
<div class="mr-4"> | |
<h3 class="text-lg font-semibold text-gray-900">إرشاد مباشر</h3> | |
<p class="text-gray-600">ترشدك مباشرة عبر الخريطة إلى أفضل الوجهات والمطاعم والفنادق.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="relative"> | |
<img src="https://via.placeholder.com/500x350?text=إيفا+في+العمل" alt="إيفا تساعد السائح" class="rounded-lg shadow-xl w-full"> | |
<div class="absolute -bottom-6 -left-6 bg-indigo-600 text-white px-6 py-3 rounded-lg shadow-lg"> | |
<i class="fas fa-headset mr-2"></i> دعم على مدار الساعة | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- كيف تساعدك إيفا؟ --> | |
<section class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-gray-900">كيف تساعدك إيفا؟</h2> | |
<p class="text-xl text-gray-600 mt-4">اكتشف الميزات الذكية التي تجعل رحلتك في عسير لا تنسى</p> | |
<div class="w-24 h-1 bg-indigo-600 mx-auto mt-4"></div> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- بطاقة 1 --> | |
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg"> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<i class="fas fa-map-signs text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-center mb-4">اقتراح المسارات</h3> | |
<p class="text-gray-600 text-center"> | |
توليد جدول سياحي بناءً على الوقت المتاح، حالة الطقس، والموقع الحالي لضمان تجربة مثالية. | |
</p> | |
</div> | |
<!-- بطاقة 2 --> | |
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg"> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<i class="fas fa-vr-cardboard text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-center mb-4">الواقع المعزز</h3> | |
<p class="text-gray-600 text-center"> | |
شرح المواقع التاريخية والأثرية عند توجيه كاميرا هاتفك إليها، مما يجعل الزيارة أكثر تفاعلية. | |
</p> | |
</div> | |
<!-- بطاقة 3 --> | |
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg"> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<i class="fas fa-headphones text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-center mb-4">الوصف الصوتي</h3> | |
<p class="text-gray-600 text-center"> | |
تقدم روايات تراثية بصوت أنثوي باللهجة النجدية أو الفصحى، مما يضيف بعدًا عاطفيًا للزيارة. | |
</p> | |
</div> | |
<!-- بطاقة 4 --> | |
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg"> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<i class="fas fa-bell text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-center mb-4">التنبيهات الذكية</h3> | |
<p class="text-gray-600 text-center"> | |
تنبهك لزحام الطرق، تغيّرات الطقس المفاجئة، أو فعاليات قريبة قد تهمك بناءً على اهتماماتك. | |
</p> | |
</div> | |
<!-- بطاقة 5 --> | |
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg"> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<i class="fas fa-child text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-center mb-4">دعم الأطفال</h3> | |
<p class="text-gray-600 text-center"> | |
محتوى مبسط وممتع للأطفال في المواقع السياحية، مع ألعاب تعليمية صغيرة لجذب انتباههم. | |
</p> | |
</div> | |
<!-- بطاقة 6 --> | |
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg"> | |
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto"> | |
<i class="fas fa-language text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-center mb-4">دعم متعدد اللغات</h3> | |
<p class="text-gray-600 text-center"> | |
تتفاعل معك باللغة التي تختارها، سواء العربية بلهجاتها المختلفة أو الإنجليزية للسياح الأجانب. | |
</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- جرب إيفا الآن --> | |
<section class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"> | |
<div class="chat-demo p-6"> | |
<h3 class="text-2xl font-bold text-center mb-6">جرب محادثة مع إيفا</h3> | |
<div class="space-y-4 mb-6"> | |
<div class="chat-bubble eva-bubble"> | |
مرحباً! أنا إيفا، مرشدتك الذكية في رحلتك بعسير. كيف يمكنني مساعدتك اليوم؟ | |
</div> | |
<div class="chat-bubble user-bubble"> | |
أريد زيارة عسير لمدة يومين، ما هي الأماكن التي تنصحني بها؟ | |
</div> | |
<div class="chat-bubble eva-bubble"> | |
رائع! بناءً على وقتك، أنصحك بزيارة: | |
<br><br> | |
1. قرية المفتاحة التشكيلية صباح اليوم الأول | |
<br> | |
2. منتزه السودة بعد الظهر | |
<br> | |
3. سوق الثلاثاء الشعبي في صباح اليوم الثاني | |
<br><br> | |
هل تفضل إضافة أماكن تاريخية أو طبيعية؟ | |
</div> | |
<div class="typing-indicator"> | |
<div class="typing-dot"></div> | |
<div class="typing-dot"></div> | |
<div class="typing-dot"></div> | |
</div> | |
</div> | |
<div class="relative"> | |
<input type="text" placeholder="اكتب رسالتك..." class="w-full px-4 py-3 rounded-full border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
<button class="absolute left-3 top-3 text-indigo-600"> | |
<i class="fas fa-paper-plane"></i> | |
</button> | |
</div> | |
<div class="text-center mt-6"> | |
<button class="bg-indigo-600 text-white px-8 py-3 rounded-lg font-bold hover:bg-indigo-700 transition duration-300"> | |
ابدأ محادثة مع إيفا الآن | |
</button> | |
</div> | |
</div> | |
<div> | |
<h2 class="text-3xl font-bold mb-6">جرب إيفا الآن</h2> | |
<p class="text-lg text-gray-600 mb-8"> | |
يمكنك البدء في تجربة إيفا مباشرة من خلال موقعنا أو عن طريق تحميل تطبيق دليل عسير الذكي. إيفا جاهزة لمساعدتك في تخطيط رحلتك وإرشادك إلى أفضل الوجهات في المنطقة. | |
</p> | |
<div class="mb-8"> | |
<h3 class="text-xl font-semibold mb-4">شاهد كيف تعمل إيفا</h3> | |
<div class="aspect-w-16 aspect-h-9 bg-gray-200 rounded-lg overflow-hidden"> | |
<div class="w-full h-full flex items-center justify-center bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-play-circle text-6xl"></i> | |
</div> | |
</div> | |
</div> | |
<div class="flex flex-wrap gap-4"> | |
<button class="bg-indigo-600 text-white px-6 py-3 rounded-lg font-bold hover:bg-indigo-700 transition duration-300 flex items-center"> | |
<i class="fas fa-download ml-2"></i> حمل التطبيق | |
</button> | |
<button class="border-2 border-indigo-600 text-indigo-600 px-6 py-3 rounded-lg font-bold hover:bg-indigo-50 transition duration-300 flex items-center"> | |
<i class="fas fa-globe ml-2"></i> جرب على الويب | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- اللغات واللهجات --> | |
<section class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-900">اللغات واللهجات المدعومة</h2> | |
<p class="text-xl text-gray-600 mt-4">تحدث مع إيفا باللغة التي تفضلها</p> | |
<div class="w-24 h-1 bg-indigo-600 mx-auto mt-4"></div> | |
</div> | |
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6"> | |
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg"> | |
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
<i class="fas fa-language text-indigo-600 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-bold">العربية الفصحى</h3> | |
<p class="text-gray-600 text-sm">لغة عربية فصيحة واضحة</p> | |
</div> | |
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg"> | |
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
<i class="fas fa-comment-dots text-indigo-600 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-bold">اللهجة النجدية</h3> | |
<p class="text-gray-600 text-sm">لهجة محلية مألوفة</p> | |
</div> | |
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg"> | |
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
<i class="fas fa-comments text-indigo-600 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-bold">اللهجة الجنوبية</h3> | |
<p class="text-gray-600 text-sm">لهجة أهل عسير الأصيلة</p> | |
</div> | |
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg"> | |
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
<i class="fas fa-flag-usa text-indigo-600 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-bold">الإنجليزية</h3> | |
<p class="text-gray-600 text-sm">للسياح الأجانب</p> | |
</div> | |
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg"> | |
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto"> | |
<i class="fas fa-plus text-indigo-600 text-3xl"></i> | |
</div> | |
<h3 class="text-lg font-bold">لغات أخرى قريباً</h3> | |
<p class="text-gray-600 text-sm">نسعى لدعم المزيد</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- الخصوصية والأمان --> | |
<section class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center"> | |
<div> | |
<h2 class="text-3xl font-bold mb-6">الخصوصية والأمان</h2> | |
<p class="text-lg text-gray-600 mb-8"> | |
نولي خصوصيتك وأمان بياناتك أهمية قصوى. إيفا مصممة لتحترم خصوصيتك وتحمي معلوماتك الشخصية. | |
</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600"> | |
<i class="fas fa-shield-alt text-xl"></i> | |
</div> | |
<div class="mr-4"> | |
<h3 class="text-lg font-semibold text-gray-900">لا تخزن بياناتك الشخصية</h3> | |
<p class="text-gray-600">إيفا لا تخزن محادثاتك أو معلوماتك الشخصية بعد انتهاء الجلسة.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600"> | |
<i class="fas fa-lock text-xl"></i> | |
</div> | |
<div class="mr-4"> | |
<h3 class="text-lg font-semibold text-gray-900">معالجة محلية</h3> | |
<p class="text-gray-600">جميع التوصيات تُعالج محليًا دون مشاركة بياناتك مع أطراف خارجية.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600"> | |
<i class="fas fa-user-secret text-xl"></i> | |
</div> | |
<div class="mr-4"> | |
<h3 class="text-lg font-semibold text-gray-900">خصوصية مضمونة</h3> | |
<p class="text-gray-600">نلتزم بأعلى معايير الحماية والخصوصية لكل المستخدمين.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="relative"> | |
<img src="https://via.placeholder.com/500x350?text=الأمان+والخصوصية" alt="الأمان والخصوصية" class="rounded-lg shadow-xl w-full"> | |
<div class="absolute -top-6 -right-6 bg-indigo-600 text-white px-6 py-3 rounded-lg shadow-lg"> | |
<i class="fas fa-lock mr-2"></i> آمن وموثوق | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- دعوة للعمل --> | |
<section class="py-16 hero-gradient text-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-6">هل أنت مستعد لرحلتك في عسير مع إيفا؟</h2> | |
<p class="text-xl mb-8 max-w-3xl mx-auto"> | |
حمل التطبيق الآن واجعل إيفا مرشدتك الشخصية في رحلتك لاكتشاف جمال عسير وثقافتها الغنية. | |
</p> | |
<div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
<button class="bg-white text-indigo-600 px-8 py-4 rounded-lg text-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg flex items-center justify-center"> | |
<i class="fab fa-apple text-2xl ml-2"></i> | |
<div class="text-left"> | |
<div class="text-xs">Download on the</div> | |
<div class="text-lg">App Store</div> | |
</div> | |
</button> | |
<button class="bg-white text-indigo-600 px-8 py-4 rounded-lg text-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg flex items-center justify-center"> | |
<i class="fab fa-google-play text-2xl ml-2"></i> | |
<div class="text-left"> | |
<div class="text-xs">Get it on</div> | |
<div class="text-lg">Google Play</div> | |
</div> | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- تذييل الصفحة --> | |
<footer class="bg-gray-900 text-white py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">دليل عسير الذكي</h3> | |
<p class="text-gray-400"> | |
منصة سياحية ذكية تهدف إلى تقديم أفضل تجربة للسائح في منطقة عسير بالمملكة العربية السعودية. | |
</p> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">روابط سريعة</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">الرئيسية</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">الوجهات السياحية</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">الفعاليات</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">إيفا المساعدة</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">معلومات</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">عن المشروع</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">الأسئلة الشائعة</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">سياسة الخصوصية</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">شروط الاستخدام</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">تواصل معنا</h3> | |
<div class="flex space-x-4 space-x-reverse mb-4"> | |
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
</div> | |
<p class="text-gray-400"> | |
البريد الإلكتروني: <a href="mailto:info@aseerguide.sa" class="hover:text-white">info@aseerguide.sa</a> | |
</p> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> | |
<p>© 2023 دليل عسير الذكي. جميع الحقوق محفوظة.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// يمكن إضافة تفاعلات جافاسكريبت هنا | |
document.addEventListener('DOMContentLoaded', function() { | |
// تأثيرات للبطاقات عند التمرير | |
const featureCards = document.querySelectorAll('.feature-card'); | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.style.opacity = 1; | |
entry.target.style.transform = 'translateY(0)'; | |
} | |
}); | |
}, { threshold: 0.1 }); | |
featureCards.forEach(card => { | |
card.style.opacity = 0; | |
card.style.transform = 'translateY(20px)'; | |
card.style.transition = 'all 0.6s ease'; | |
observer.observe(card); | |
}); | |
// محاكاة الدردشة | |
const chatDemo = document.querySelector('.chat-demo'); | |
const typingIndicator = document.querySelector('.typing-indicator'); | |
// إخفاء مؤشر الكتابة بعد 3 ثوان | |
setTimeout(() => { | |
typingIndicator.style.display = 'none'; | |
// إضافة رسالة جديدة | |
const newMessage = document.createElement('div'); | |
newMessage.className = 'chat-bubble eva-bubble'; | |
newMessage.textContent = 'يمكنك أيضًا الاستفسار عن مواعيد الفعاليات، أماكن الإقامة، أو المطاعم الموصى بها في المنطقة التي تزورها.'; | |
typingIndicator.parentNode.insertBefore(newMessage, typingIndicator); | |
}, 3000); | |
// تأثيرات للغة عند التمرير | |
const languageBadges = document.querySelectorAll('.language-badge'); | |
languageBadges.forEach((badge, index) => { | |
badge.style.opacity = 0; | |
badge.style.transform = 'scale(0.9)'; | |
badge.style.transition = `all 0.5s ease ${index * 0.1}s`; | |
const badgeObserver = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.style.opacity = 1; | |
entry.target.style.transform = 'scale(1)'; | |
} | |
}); | |
}, { threshold: 0.1 }); | |
badgeObserver.observe(badge); | |
}); | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=wasmdashai/sh-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |