fc / index.html
Althnayi's picture
Upload 56 files
cca0cf3 verified
Raw
History Blame Contribute Delete
6.42 kB
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<!-- إعدادات العرض ومنع التقريب بالأصابع لضمان تجربة Native App سلسة -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
<meta name="theme-color" content="#ffffff">
<meta name="color-scheme" content="light dark">
<title>فريتري - مركز إدارة وأتمتة حملات النشر والتذكير الذكي والرادار</title>
<!-- ================================================================= -->
<!-- إعدادات ووسوم تطبيق الويب التقدمي (PWA & Mobile Native Meta Tags) -->
<!-- ================================================================= -->
<link rel="manifest" href="manifest.webmanifest">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Fritree">
<link rel="apple-touch-icon" href="icon.png">
<link rel="icon" type="image/png" href="icon.png">
<!-- خطوط الويب الاحترافية المعتمدة (Cairo للعربية و Plus Jakarta Sans للأرقام والإنجليزية) -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- مكتبة الأيقونات Font Awesome الإصدار الأحدث -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- ملف التصميم ونظام التنسيق المركزي المحدث -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- ================================================================= -->
<!-- 0. جسر التوافقية الشامل للـ PWA (Hybrid Shim & Polyfill Bridge) -->
<!-- ================================================================= -->
<script src="pwa-bridge.js"></script>
<!-- ================================================================= -->
<!-- 1. طبقة الإعدادات والثوابت العامة (Config & Constants Layer) -->
<!-- ================================================================= -->
<script src="app-constants.js"></script>
<script src="store-config.js"></script>
<script src="banking-config.js"></script>
<!-- ================================================================= -->
<!-- 2. طبقة الدوال المساعدة والأدوات العامة (Utils & Helpers Layer) -->
<!-- ================================================================= -->
<script src="zip-archive.js"></script>
<script src="image-compressor.js"></script>
<script src="phone-resolver.js"></script>
<script src="linguistic-engine.js"></script>
<script src="text-compiler.js"></script>
<!-- ================================================================= -->
<!-- 3. طبقة التشفير والتخزين الموحد (Storage & Crypto Layer) -->
<!-- ================================================================= -->
<script src="crypto-engine.js"></script>
<script src="storage-manager.js"></script>
<script src="contacts-vault.js"></script>
<!-- ================================================================= -->
<!-- 4. طبقة إدارة الحالة المركزية (Central State Management Layer) -->
<!-- ================================================================= -->
<script src="app-state.js"></script>
<script src="rotation-state.js"></script>
<script src="calendar-state.js"></script>
<!-- ================================================================= -->
<!-- 5. طبقة الخدمات والعمليات الأساسية (Core Logic & Services Layer) -->
<!-- ================================================================= -->
<script src="progression-service.js"></script>
<script src="exchange-rates-service.js"></script>
<script src="antiban-rules-service.js"></script>
<script src="similarity-service.js"></script>
<script src="backup-service.js"></script>
<!-- ================================================================= -->
<!-- 6. طبقة بناء الواجهات والعرض (UI & DOM Rendering Layer) -->
<!-- ================================================================= -->
<script src="shell-layout.js"></script>
<script src="facebook-ui.js"></script>
<script src="fb-registry-ui.js"></script>
<script src="whatsapp-ui.js"></script>
<script src="contacts-layout.js"></script>
<script src="contacts-renderer.js"></script>
<script src="rotation-ui.js"></script>
<script src="rotation-groups-ui.js"></script>
<script src="rotation-performance-ui.js"></script>
<script src="calendar-ui.js"></script>
<script src="wallet-ui.js"></script>
<script src="store-ui.js"></script>
<script src="history-ui.js"></script>
<script src="support-ui.js"></script>
<!-- ================================================================= -->
<!-- 7. طبقة وحدات التحكم ومستمعات الأحداث (Controllers Layer) -->
<!-- ================================================================= -->
<script src="contacts-editor-controller.js"></script>
<script src="contacts-bulk-controller.js"></script>
<script src="rotation-creator-controller.js"></script>
<script src="rotation-followups-controller.js"></script>
<script src="wallet-controller.js"></script>
<script src="store-controller.js"></script>
<script src="stealth-pacing-controller.js"></script>
<!-- ================================================================= -->
<!-- 8. المنسق العام ومدخل التشغيل الرئيسي (Main Orchestrator) -->
<!-- ================================================================= -->
<script src="orchestrator-controller.js"></script>
</body>
</html>