Update: 2026-05-16 02:06:23
This commit is contained in:
345
backend/index.html
Normal file
345
backend/index.html
Normal file
@@ -0,0 +1,345 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ar" dir="rtl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Jordan Bot - مساعدك الذكي للتوصيل</title>
|
||||
<!-- Google Fonts -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;800&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--primary: #00D4AA;
|
||||
--secondary: #FFD700;
|
||||
--dark: #121222;
|
||||
--card-bg: #1A1A2E;
|
||||
--text-light: #FFFFFF;
|
||||
--text-muted: #AAAAAA;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: 'Cairo', sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--dark);
|
||||
color: var(--text-light);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
padding: 80px 20px;
|
||||
background: linear-gradient(180deg, #1A1A2E 0%, var(--dark) 100%);
|
||||
}
|
||||
|
||||
header h1 {
|
||||
color: var(--primary);
|
||||
font-size: 3.5rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
header p {
|
||||
font-size: 1.2rem;
|
||||
color: var(--text-muted);
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.btn-download {
|
||||
display: inline-block;
|
||||
background-color: var(--primary);
|
||||
color: #000;
|
||||
padding: 15px 40px;
|
||||
border-radius: 30px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
font-size: 1.2rem;
|
||||
margin-top: 30px;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-download:hover {
|
||||
transform: translateY(-5px);
|
||||
background-color: #00FFCC;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 60px 0;
|
||||
}
|
||||
|
||||
h2.section-title {
|
||||
text-align: center;
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 50px;
|
||||
color: var(--text-light);
|
||||
}
|
||||
|
||||
/* Features */
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
background-color: var(--card-bg);
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
text-align: center;
|
||||
border: 1px solid #333;
|
||||
}
|
||||
|
||||
.feature-card h3 {
|
||||
color: var(--primary);
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
/* Pricing */
|
||||
.pricing-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 30px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.pricing-card {
|
||||
background-color: var(--card-bg);
|
||||
padding: 40px 30px;
|
||||
border-radius: 20px;
|
||||
text-align: center;
|
||||
border: 1px solid #333;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.pricing-card:hover {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
|
||||
.pricing-card.premium {
|
||||
border: 2px solid var(--primary);
|
||||
box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.pricing-card.premium:hover {
|
||||
transform: scale(1.05) translateY(-10px);
|
||||
}
|
||||
|
||||
.price {
|
||||
font-size: 2.5rem;
|
||||
color: var(--text-light);
|
||||
font-weight: bold;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.price span {
|
||||
font-size: 1.2rem;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
ul.plan-features {
|
||||
list-style: none;
|
||||
margin-bottom: 30px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
ul.plan-features li {
|
||||
margin-bottom: 10px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
ul.plan-features li::before {
|
||||
content: '✓ ';
|
||||
color: var(--primary);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Guide Steps */
|
||||
.guide-step {
|
||||
background-color: var(--card-bg);
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
margin-bottom: 30px;
|
||||
border-left: 5px solid var(--primary);
|
||||
}
|
||||
|
||||
.guide-step h3 {
|
||||
color: var(--secondary);
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.guide-step p {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.placeholder-img {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
height: 250px;
|
||||
background-color: #333;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 10px;
|
||||
color: #777;
|
||||
font-size: 1.2rem;
|
||||
border: 2px dashed #555;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 30px;
|
||||
border-top: 1px solid #333;
|
||||
margin-top: 50px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.pricing-card.premium {
|
||||
transform: scale(1);
|
||||
}
|
||||
.pricing-card.premium:hover {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Header -->
|
||||
<header>
|
||||
<div class="container">
|
||||
<h1>Jordan Bot</h1>
|
||||
<p>المساعد الذكي الأول لكباتن تطبيقات التوصيل في الأردن. يعمل في الخلفية لضمان قبول أفضل الطلبات تلقائياً بناءً على فلاترك الخاصة.</p>
|
||||
<a href="#download" class="btn-download">تحميل التطبيق الآن</a>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Features -->
|
||||
<section class="container">
|
||||
<h2 class="section-title">لماذا تختار Jordan Bot؟</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card">
|
||||
<h3>⚡ قبول تلقائي وسريع</h3>
|
||||
<p>يلتقط الطلبات في أجزاء من الثانية قبل أي سائق آخر، بدون استنزاف البطارية بفضل الخوارزميات الذكية.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h3>🎯 فلاتر ذكية</h3>
|
||||
<p>حدد الحد الأدنى للسعر والحد الأقصى للمسافة، وسيتكفل البوت برفض الطلبات الخاسرة وقبول المربحة فقط.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h3>📱 يدعم جميع التطبيقات</h3>
|
||||
<p>يعمل بكفاءة مع تطبيقات Uber، Careem، Jeeny، Petra Ride، و TaxiF في وقت واحد.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Pricing -->
|
||||
<section class="container" id="pricing">
|
||||
<h2 class="section-title">باقات الاشتراك</h2>
|
||||
<div class="pricing-grid">
|
||||
<!-- Free -->
|
||||
<div class="pricing-card">
|
||||
<h3>الخطة المجانية</h3>
|
||||
<div class="price">0 <span>JOD / مدى الحياة</span></div>
|
||||
<ul class="plan-features">
|
||||
<li>رحلة واحدة يومياً للتجربة</li>
|
||||
<li>تجربة الفلاتر الأساسية</li>
|
||||
<li>دعم تطبيقات محدودة</li>
|
||||
</ul>
|
||||
<p style="color: var(--text-muted); font-size: 0.9rem;">مثالية للتجربة قبل الاشتراك</p>
|
||||
</div>
|
||||
|
||||
<!-- Pro (Premium) -->
|
||||
<div class="pricing-card premium">
|
||||
<h3>الخطة الاحترافية</h3>
|
||||
<div class="price">10 <span>JOD / شهر</span></div>
|
||||
<ul class="plan-features">
|
||||
<li>طلبات غير محدودة (Unlimited)</li>
|
||||
<li>أولوية قصوى في سرعة القبول</li>
|
||||
<li>دعم كامل لجميع التطبيقات</li>
|
||||
<li>فلاتر متقدمة ومحدثة</li>
|
||||
</ul>
|
||||
<p style="color: var(--secondary); font-size: 0.9rem;">الدفع آلي وفوري عبر محفظة <strong>CliQ</strong></p>
|
||||
</div>
|
||||
|
||||
<!-- Annual -->
|
||||
<div class="pricing-card">
|
||||
<h3>الخطة السنوية</h3>
|
||||
<div class="price">80 <span>JOD / سنة</span></div>
|
||||
<ul class="plan-features">
|
||||
<li>توفير 40 دينار سنوياً</li>
|
||||
<li>تفعيل مستمر لا ينقطع</li>
|
||||
<li>وصول حصري للتحديثات الجديدة</li>
|
||||
</ul>
|
||||
<p style="color: var(--text-muted); font-size: 0.9rem;">الدفع آلي وفوري عبر محفظة <strong>CliQ</strong></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Installation Guide -->
|
||||
<section class="container" id="download">
|
||||
<h2 class="section-title">دليل التثبيت والإعداد الشامل</h2>
|
||||
|
||||
<div class="guide-step">
|
||||
<h3>الخطوة 1: إيقاف حماية Google Play (Play Protect)</h3>
|
||||
<p>لأن التطبيق من خارج المتجر ويتحكم بالشاشة لخدمتك، قد يمنعه Google Play من التثبيت. يجب إيقاف الحماية مؤقتاً.</p>
|
||||
<ol style="margin-right: 20px; line-height: 2;">
|
||||
<li>افتح تطبيق متجر <strong>Google Play</strong>.</li>
|
||||
<li>اضغط على صورة حسابك في الأعلى.</li>
|
||||
<li>اختر <strong>Play Protect</strong> (للحماية).</li>
|
||||
<li>اضغط على أيقونة الإعدادات (الترس) ⚙️ في الأعلى.</li>
|
||||
<li>قم بإيقاف الخيارين الموجودين.</li>
|
||||
</ol>
|
||||
<!-- Add your image here later -->
|
||||
<div class="placeholder-img">
|
||||
[مكان صورة إيقاف Play Protect]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="guide-step">
|
||||
<h3>الخطوة 2: السماح بالإعدادات المقيدة (لأجهزة Android 13 و 14)</h3>
|
||||
<p>في الأجهزة الحديثة، يمنع نظام أندرويد التطبيقات الخارجية من الوصول لـ "خدمة الوصول" (Accessibility). لحل هذه المشكلة:</p>
|
||||
<ol style="margin-right: 20px; line-height: 2;">
|
||||
<li>اذهب إلى <strong>إعدادات الهاتف</strong> > <strong>التطبيقات</strong>.</li>
|
||||
<li>ابحث عن تطبيق <strong>Jordan Bot</strong> واضغط عليه.</li>
|
||||
<li>اضغط على <strong>الثلاث نقاط</strong> في أعلى الزاوية.</li>
|
||||
<li>اختر <strong>"السماح بالإعدادات المقيدة" (Allow restricted settings)</strong> وقم بتأكيد البصمة.</li>
|
||||
</ol>
|
||||
<!-- Add your image here later -->
|
||||
<div class="placeholder-img">
|
||||
[مكان صورة السماح بالإعدادات المقيدة]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="guide-step">
|
||||
<h3>الخطوة 3: تفعيل صلاحيات البوت</h3>
|
||||
<p>الآن اصبح بإمكانك فتح التطبيق وتفعيل الصلاحيات المطلوبة بسهولة:</p>
|
||||
<ul style="margin-right: 20px; line-height: 2;">
|
||||
<li><strong>خدمة الوصول (Accessibility):</strong> ضرورية لقراءة الشاشة والضغط على زر القبول.</li>
|
||||
<li><strong>الظهور فوق التطبيقات (Overlay):</strong> لإظهار واجهة البوت الشفافة فوق الخريطة.</li>
|
||||
<li><strong>الموقع (Location):</strong> للسماح للبوت بحساب المسافات بدقة.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p>© 2026 Jordan Bot. جميع الحقوق محفوظة.</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user