Spaces:
Running
Running
## منصة "فاحص" - الهيكل الكامل للتطبيق والمنصة ### 🏡 الصفحة الرئيسية: * الشعار + شعار الهيئات الشريكة (وزارة الصحة، الجوازات) * النسخة التعريفية عن فاحص ("أول تطبيق متكامل لفحص ومراقبة صحة الوفد قبل الوصول إلى السعودية") * زر تحميل التطبيق * نبذة مرئية (فيديو ترويجي) * قسم أهم المزايا: * أجهزة محمولة * الفحص فوري * نقل سريع للنتائج * ربط مباشر مع الهيئات الرسمية ### 📊 قسم "نموذج الفحص": * تسجيل معلومات المفحوص: * الاسم * رقم الجواز * الجنسية * نوع التأشيرة * تحميل الفحوصات المحلية (صورة + QR) * الربط بالجهاز (سحب عينة الدم / البول) * تشغيل الفحص (مواد مشعة أو الرنين المغناطيسي) * نقل النتيجة إلى السيرفر المركزي ### 🔗 قسم "التواصل والتطابق": * مزامنة النتائج مع أنظمة وزارة الصحة * رقم تحقق فريد (UID) لكل مفحوص * رفع للمنصات الرسمية (مقيم - القدوم - التأشيرات) ### 📈 قسم "تحليل ومراقبة صحة الوفد": * متابعة سلوك الصحة والعوارض * تقرير مفصل (للكفيل / وزارة العمل) * تنبيهات واشعارات بالحالات مشتبهة / خطرة ### 🌐 قسم "للحكومة": * لوحة مراقبة لافتحاصات الوافدين * استخراج الإحصائيات (نوع المرض / الجنسية / العمر) * الكشف المبكر عن حالات العدوى * صلة بأنظمة الجوازات والدخول ### 👥 قسم حسابي: * إنشاء ملف طبي شخصي * عرض تاريخ الفحوصات * تحميل التقارير * ربط مع فايركس / الخادم الوطني ### ⚡️ التطبيق المرافق: * تطبيق محمول (أندرويد + آيفون) * كاميرا لقراءة QR + الفحص الموضعي * ربط بالجهاز ورسم البيانات هل ترغب بتصميم واجهات صورية لكل قسم للعرض؟ - Initial Deployment
62f6511
verified
<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.0.0-beta3/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; | |
transition: all 0.3s ease; | |
} | |
.hero-gradient { | |
background: linear-gradient(135deg, #1a56db 0%, #0e4a8a 100%); | |
} | |
.feature-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
} | |
.section-divider { | |
height: 80px; | |
background: linear-gradient(to bottom right, transparent 49%, #f8fafc 50%), | |
linear-gradient(to top right, #f8fafc 49%, transparent 50%); | |
} | |
.platform-section { | |
background-color: #f8fafc; | |
} | |
.btn-primary { | |
background-color: #1a56db; | |
transition: all 0.3s ease; | |
} | |
.btn-primary:hover { | |
background-color: #0e4a8a; | |
transform: translateY(-2px); | |
} | |
.qr-scanner { | |
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), | |
url('https://images.unsplash.com/photo-1588436707808-88f443b76494?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80'); | |
background-size: cover; | |
background-position: center; | |
} | |
@keyframes pulse { | |
0% { transform: scale(1); } | |
50% { transform: scale(1.05); } | |
100% { transform: scale(1); } | |
} | |
.pulse-animation { | |
animation: pulse 2s infinite; | |
} | |
</style> | |
</head> | |
<body class="text-gray-800"> | |
<!-- Header --> | |
<header class="bg-white shadow-sm sticky top-0 z-50"> | |
<div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
<div class="flex items-center"> | |
<div class="w-12 h-12 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold text-xl"> | |
ف | |
</div> | |
<h1 class="mr-3 text-xl font-bold text-blue-600">فاحص</h1> | |
</div> | |
<nav class="hidden md:flex space-x-8 space-x-reverse"> | |
<a href="#features" class="font-medium hover:text-blue-600">المميزات</a> | |
<a href="#platform" class="font-medium hover:text-blue-600">المنصة</a> | |
<a href="#examination" class="font-medium hover:text-blue-600">الفحص</a> | |
<a href="#government" class="font-medium hover:text-blue-600">للحكومة</a> | |
<a href="#account" class="font-medium hover:text-blue-600">حسابي</a> | |
<a href="#app" class="font-medium hover:text-blue-600">التطبيق</a> | |
</nav> | |
<button class="md:hidden text-gray-600"> | |
<i class="fas fa-bars text-xl"></i> | |
</button> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section class="hero-gradient text-white py-20"> | |
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<div class="flex items-center space-x-4 space-x-reverse mb-6"> | |
<img src="https://logo.clearbit.com/moh.gov.sa" class="h-12" alt="وزارة الصحة"> | |
<img src="https://logo.clearbit.com/gdp.gov.sa" class="h-12" alt="الجوازات"> | |
<img src="https://logo.clearbit.com/mol.gov.sa" class="h-12" alt="وزارة العمل"> | |
</div> | |
<h1 class="text-4xl md:text-5xl font-bold mb-6">أول تطبيق متكامل لفحوصات الوافدين</h1> | |
<p class="text-xl mb-8 leading-relaxed">منصة "فاحص" توفر حلولاً متكاملة للفحوصات الطبية للوافدين إلى المملكة العربية السعودية، مع ربط مباشر مع أنظمة الهيئات الحكومية لضمان صحة الوفد وسلامته.</p> | |
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4 sm:space-x-reverse"> | |
<button class="bg-white text-blue-600 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition flex items-center justify-center pulse-animation"> | |
<i class="fab fa-google-play ml-2"></i> | |
حمل التطبيق | |
</button> | |
<button class="border border-white text-white font-bold py-3 px-8 rounded-lg hover:bg-white hover:text-blue-600 transition"> | |
تعرف على المنصة | |
</button> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<div class="relative w-full max-w-md"> | |
<div class="absolute -top-10 -right-10 w-40 h-40 bg-blue-400 rounded-full opacity-20"></div> | |
<div class="absolute -bottom-10 -left-10 w-32 h-32 bg-blue-400 rounded-full opacity-20"></div> | |
<img src="https://images.unsplash.com/photo-1581093450928-0f3e1c179209?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" | |
class="relative rounded-lg shadow-2xl" alt="منصة فاحص"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<div class="section-divider"></div> | |
<!-- Features Section --> | |
<section id="features" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold mb-4 text-blue-600">المميزات الرئيسية</h2> | |
<p class="text-lg max-w-2xl mx-auto">منصة فاحص توفر حلولاً متكاملة لفحص صحة الوافدين بكفاءة ودقة عالية</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition"> | |
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4"> | |
<i class="fas fa-mobile-alt text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">أجهزة محمولة</h3> | |
<p class="text-gray-600">إمكانية إجراء الفحوصات باستخدام الأجهزة المحمولة في مراكز الفحص المعتمدة</p> | |
</div> | |
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition"> | |
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4"> | |
<i class="fas fa-bolt text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">فحص فوري</h3> | |
<p class="text-gray-600">نتائج فورية للفحوصات الأساسية مع تقارير مفصلة على الفور</p> | |
</div> | |
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition"> | |
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4"> | |
<i class="fas fa-cloud-upload-alt text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">نقل سريع</h3> | |
<p class="text-gray-600">نقل النتائج إلى السحابة الإلكترونية بشكل آلي وسريع</p> | |
</div> | |
<div class="feature-card bg-white p-6 rounded-xl shadow-md border border-gray-100 transition"> | |
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-4"> | |
<i class="fas fa-link text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">ربط حكومي</h3> | |
<p class="text-gray-600">ربط مباشر مع أنظمة الهيئات الحكومية المعنية بالوافدين</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Video Section --> | |
<section class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-8 md:mb-0 md:mr-8"> | |
<h2 class="text-3xl font-bold mb-4 text-blue-600">كيف تعمل منصة فاحص؟</h2> | |
<p class="text-lg mb-6">شاهد هذا الفيديو التوضيحي لتعرف كيف تقوم منصة فاحص بتبسيط عملية الفحص الصحي للوافدين وتوفير الوقت والجهد لجميع الأطراف المعنية.</p> | |
<button class="btn-primary text-white font-bold py-3 px-8 rounded-lg flex items-center"> | |
<i class="fas fa-play ml-2"></i> تشغيل الفيديو | |
</button> | |
</div> | |
<div class="md:w-1/2 relative"> | |
<div class="rounded-xl overflow-hidden shadow-xl"> | |
<img src="https://images.unsplash.com/photo-1551269901-5c5e14c25df7?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" | |
class="w-full h-auto" alt="فيديو توضيحي"> | |
<div class="absolute inset-0 flex items-center justify-center"> | |
<div class="w-16 h-16 bg-blue-600 rounded-full flex items-center justify-center opacity-90 hover:opacity-100 transition cursor-pointer"> | |
<i class="fas fa-play text-white text-xl"></i> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Platform Section - Examination --> | |
<section id="platform" class="py-16 platform-section"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold mb-4 text-blue-600">منصة فاحص المتكاملة</h2> | |
<p class="text-lg max-w-3xl mx-auto">إجراء الفحوصات وإدارة النتائج وتوفير المعلومات للجهات المعنية في منصة واحدة متكاملة</p> | |
</div> | |
</div> | |
</section> | |
<!-- Examination Section --> | |
<section id="examination" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col lg:flex-row items-center"> | |
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:order-last lg:pl-12"> | |
<img src="https://images.unsplash.com/photo-1581595219315-a187dd40c322?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" | |
class="rounded-lg shadow-xl" alt="نموذج الفحص"> | |
</div> | |
<div class="lg:w-1/2"> | |
<h2 class="text-3xl font-bold mb-6 text-blue-600">نموذج الفحص الصحي</h2> | |
<p class="text-lg mb-8">إجراء الفحص الصحي الشامل للوافدين بخطوات بسيطة وسريعة مع ربط النتائج بالأنظمة الحكومية المعنية.</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-user text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">تسجيل بيانات المفحوص</h3> | |
<p class="text-gray-600">إدخال معلومات المفحوص الأساسية (الاسم، رقم الجواز، الجنسية، نوع التأشيرة)</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-qrcode text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">تحميل الفحوصات</h3> | |
<p class="text-gray-600">تحميل الفحوصات المحلية مع قراءة QR كود للتأكد من صحتها</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-vials text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">إجراء الفحوصات</h3> | |
<p class="text-gray-600">إجراء الفحوصات الإضافية المطلوبة (تحليل الدم، الأشعة، وغيرها)</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-cloud-upload-alt text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">تحميل النتائج</h3> | |
<p class="text-gray-600">نقل النتائج إلى السيرفر المركزي مع إنشاء رقم تحقق فريد</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- QR Scanner Section --> | |
<section class="py-16 text-white qr-scanner"> | |
<div class="container mx-auto px-4"> | |
<div class="max-w-3xl mx-auto text-center"> | |
<div class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-qrcode text-2xl"></i> | |
</div> | |
<h2 class="text-3xl font-bold mb-6">ماسح الرمز الذكي (QR)</h2> | |
<p class="text-xl mb-8 leading-relaxed">باستخدام ماسح الرمز الذكي في التطبيق يمكنك تحميل الفحوصات السابقة للمفحوص بسرعة ودقة عالية، مع التأكد من صحة الوثائق وتفادي التزوير.</p> | |
<button class="bg-blue-600 text-white font-bold py-3 px-8 rounded-lg hover:bg-blue-700 transition flex items-center mx-auto"> | |
<i class="fas fa-camera ml-2"></i> تشغيل الماسح | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- Integration Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold mb-4 text-blue-600">التواصل والتطابق</h2> | |
<p class="text-lg max-w-2xl mx-auto">ربط نتائج الفحوصات مع الأنظمة الحكومية المعنية بشكل آلي</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
<i class="fas fa-sync-alt text-blue-600"></i> | |
</div> | |
<h3 class="font-bold text-lg">مزامنة النتائج</h3> | |
</div> | |
<p class="text-gray-600">مزامنة نتائج الفحوصات مع أنظمة وزارة الصحة والجهات المعنية بشكل فوري وآمن</p> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
<i class="fas fa-fingerprint text-blue-600"></i> | |
</div> | |
<h3 class="font-bold text-lg">رقم التحقق الفريد</h3> | |
</div> | |
<p class="text-gray-600">إنشاء رقم تحقق فريد (UID) لكل مفحوص يمكن استخدامه للرجوع إلى ملفه الصحي الكامل</p> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
<i class="fas fa-cloud-upload-alt text-blue-600"></i> | |
</div> | |
<h3 class="font-bold text-lg">الرفع للمنصات الرسمية</h3> | |
</div> | |
<p class="text-gray-600">رفع النتائج تلقائياً لمنصات مقيم، القدوم والتأشيرات الإلكترونية</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Health Monitoring Section --> | |
<section class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col lg:flex-row items-center"> | |
<div class="lg:w-1/2 mb-10 lg:mb-0"> | |
<img src="https://images.unsplash.com/photo-1581056771107-24ca5f033842?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" | |
class="rounded-lg shadow-xl" alt="مراقبة الصحة"> | |
</div> | |
<div class="lg:w-1/2 lg:pl-12"> | |
<h2 class="text-3xl font-bold mb-6 text-blue-600">تحليل ومراقبة صحة الوفد</h2> | |
<p class="text-lg mb-8">نظام متكامل لمتابعة الحالة الصحية للوافدين وإعداد التقارير اللازمة للجهات المعنية.</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-heartbeat text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">متابعة سلوك الصحة</h3> | |
<p class="text-gray-600">تتبع الحالة الصحية للوافدين ورصد أي تغيرات أو عوارض صحية</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-file-medical text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">تقرير مفصل</h3> | |
<p class="text-gray-600">إعداد تقارير مفصلة عن الحالة الصحية للكفيل أو وزارة العمل</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-bell text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">تنبيهات وإشعارات</h3> | |
<p class="text-gray-600">إرسال تنبيهات فورية للجهات المعنية بالحالات المشتبه بها أو الخطرة</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Government Section --> | |
<section id="government" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold mb-4 text-blue-600">للحكومة والقطاع الصحي</h2> | |
<p class="text-lg max-w-2xl mx-auto">أدوات متكاملة لمراقبة صحة الوافدين واتخاذ القرارات الصحية المبنية على البيانات</p> | |
</div> | |
<div class="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8"> | |
<div class="bg-gray-50 p-8 rounded-xl border border-gray-200"> | |
<div class="flex items-center mb-6"> | |
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
<i class="fas fa-tachometer-alt text-blue-600 text-xl"></i> | |
</div> | |
<h3 class="font-bold text-xl">لوحة مراقبة الوافدين</h3> | |
</div> | |
<p class="text-gray-600 mb-6">لوحة معلومات تفاعلية تقدم نظرة شاملة على حالة الفحوصات للأفواج الوافدة، مع إمكانية تصفية البيانات حسب الجنسية، الحالة الصحية، مناطق القدوم.</p> | |
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" | |
class="rounded-lg shadow-md w-full" alt="لوحة التحكم"> | |
</div> | |
<div class="grid grid-cols-1 gap-8"> | |
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
<i class="fas fa-chart-pie text-blue-600"></i> | |
</div> | |
<h3 class="font-bold text-lg">الإحصائيات الصحية</h3> | |
</div> | |
<p class="text-gray-600">استخراج الإحصائيات حسب نوع المرض، الجنسية، العمر وغيرها من المعايير مع إمكانية تصدير التقارير</p> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
<i class="fas fa-shield-virus text-blue-600"></i> | |
</div> | |
<h3 class="font-bold text-lg">الكشف المبكر</h3> | |
</div> | |
<p class="text-gray-600">نظام ذكي للكشف المبكر عن حالات العدوى والأمراض المعدية بين الوافدين لأخذ الإجراءات الوقائية</p> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4"> | |
<i class="fas fa-passport text-blue-600"></i> | |
</div> | |
<h3 class="font-bold text-lg">ربط أنظمة الجوازات</h3> | |
</div> | |
<p class="text-gray-600">ربط فوري مع أنظمة الجوازات ومراقبة الدخول لاتخاذ الإجراءات الصحية المناسبة قبل القدوم</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Account Section --> | |
<section id="account" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col lg:flex-row items-center"> | |
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:order-last lg:pl-12"> | |
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" | |
class="rounded-lg shadow-xl" alt="حسابي الشخصي"> | |
</div> | |
<div class="lg:w-1/2"> | |
<h2 class="text-3xl font-bold mb-6 text-blue-600">حسابي الشخصي</h2> | |
<p class="text-lg mb-8">إدارة الملف الصحي الشخصي وتاريخ الفحوصات ومشاركة النتائج مع الجهات المعنية.</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-user-circle text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">ملف طبي شخصي</h3> | |
<p class="text-gray-600">إنشاء ملف طبي شخصي يحتوي على كافة التفاصيل الصحية والتاريخ المرضي</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-history text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">سجل الفحوصات</h3> | |
<p class="text-gray-600">عرض كافة الفحوصات السابقة والنتائج والتقارير الطبية في مكان واحد</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-file-download text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">تحميل التقارير</h3> | |
<p class="text-gray-600">إمكانية تحميل التقارير الطبية بصيغة PDF أو مشاركتها مع الجهات المعنية</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
<i class="fas fa-server text-blue-600"></i> | |
</div> | |
</div> | |
<div class="mr-4"> | |
<h3 class="font-bold text-lg mb-2">ربط أنظمة وطنية</h3> | |
<p class="text-gray-600">ربط الملف الصحي مع فايركس والخادم الوطني للتوثيق والتكامل</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- App Section --> | |
<section id="app" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold mb-4 text-blue-600">تطبيق فاحص المحمول</h2> | |
<p class="text-lg max-w-2xl mx-auto">قم بتنزيل تطبيق "فاحص" الآن على هاتفك الذكي لإجراء الفحوصات ومراقبة النتائج أينما كنت</p> | |
</div> | |
<div class="flex flex-col md:flex-row items-center justify-center"> | |
<div class="mb-8 md:mb-0 md:mr-16"> | |
<img src="https://images.unsplash.com/photo-1601784551446-20c9e07cdbdb?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" | |
class="h-96 rounded-lg shadow-xl" alt="تطبيق فاحص"> | |
</div> | |
<div class="max-w-md"> | |
<div class="mb-8"> | |
<h3 class="text-xl font-bold mb-4">مميزات التطبيق:</h3> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 ml-2"></i> | |
<span>إجراء الفحوصات المطلوبة للوافدين عبر الهاتف</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 ml-2"></i> | |
<span>كاميرا مدمجة لقراءة QR كود للفحوصات السابقة</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 ml-2"></i> | |
<span>ربط مباشر بأجهزة الفحص الطبية لنقل النتائج</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 ml-2"></i> | |
<span>عرض البيانات والرسوم البيانية لحالة المفحوص</span> | |
</li> | |
</ul> | |
</div> | |
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4 sm:space-x-reverse justify-center"> | |
<button class="bg-gray-800 text-white font-bold py-3 px-6 rounded-lg hover:bg-gray-700 transition flex items-center justify-center"> | |
<i class="fab fa-apple text-xl ml-2"></i> App Store | |
</button> | |
<button class="bg-green-600 text-white font-bold py-3 px-6 rounded-lg hover:bg-green-700 transition flex items-center justify-center"> | |
<i class="fab fa-google-play text-xl ml-2"></i> Google Play | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section class="py-16 bg-blue-600 text-white"> | |
<div class="container mx-auto px-4"> | |
<div class="max-w-4xl mx-auto text-center"> | |
<h2 class="text-3xl font-bold mb-6">هل لديك استفسار أو تحتاج إلى مساعدة؟</h2> | |
<p class="text-xl mb-8 leading-relaxed">فريق الدعم الفني لمنصة فاحص متاح على مدار الساعة للإجابة على استفساراتكم وتقديم المساعدة الفنية اللازمة.</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-6 sm:space-x-reverse justify-center"> | |
<button class="bg-white text-blue-600 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition"> | |
<i class="fas fa-headset ml-2"></i> الدعم الفني | |
</button> | |
<button class="border border-white text-white font-bold py-3 px-8 rounded-lg hover:bg-white hover:text-blue-600 transition"> | |
<i class="fas fa-envelope ml-2"></i> اتصل بنا | |
</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white py-12"> | |
<div class="container mx-auto px-4"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
<div> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold text-xl mr-2"> | |
ف | |
</div> | |
<h3 class="text-xl font-bold">فاحص</h3> | |
</div> | |
<p class="text-gray-400">أول منصة متكاملة للفحوصات الصحية للوافدين إلى المملكة العربية السعودية.</p> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-4">روابط سريعة</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">الصفحة الرئيسية</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">عن المنصة</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">الأسئلة الشائعة</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">مراكز الفحص</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-4">الشروط والسياسات</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">شروط الاستخدام</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">سياسة الخصوصية</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">سياسة الأمان</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">الشروط الصحية</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold text-lg mb-4">تواصل معنا</h4> | |
<ul class="space-y-2"> | |
<li class="flex items-center"> | |
<i class="fas fa-phone-alt text-gray-400 ml-2 w-4"></i> | |
<span class="text-gray-400">920000000</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-envelope text-gray-400 ml-2 w-4"></i> | |
<span class="text-gray-400">[email protected]</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-map-marker-alt text-gray-400 ml-2 w-4"></i> | |
<span class="text-gray-400">الرياض، السعودية</span> | |
</li> | |
</ul> | |
<div class="flex space-x-4 space-x-reverse mt-4"> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
</div> | |
</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> | |
// Simple animation for demonstration | |
document.addEventListener('DOMContentLoaded', function() { | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
}); | |
}); | |
// Mobile menu toggle (would need more JS for full functionality) | |
const mobileMenuButton = document.querySelector('.md\\:hidden'); | |
mobileMenuButton.addEventListener('click', function() { | |
alert('في التطبيق الفعلي، هذا الزر سيظهر قائمة الهاتف الجوال'); | |
}); | |
}); | |
</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=wamd/fahis-platform" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |