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> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet"> | |
| <script src="https://unpkg.com/[email protected]/dist/aos.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap'); | |
| body { | |
| font-family: 'Tajawal', sans-serif; | |
| background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); | |
| color: #e2e8f0; | |
| } | |
| .product-card { | |
| transition: all 0.3s ease; | |
| border: 1px solid #334155; | |
| border-radius: 15px; | |
| overflow: hidden; | |
| } | |
| .product-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2); | |
| } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #60a5fa, #3b82f6, #8b5cf6); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Header --> | |
| <header class="py-6 px-4 border-b border-gray-800"> | |
| <div class="max-w-6xl mx-auto flex justify-between items-center"> | |
| <a href="index.html" class="flex items-center"> | |
| <i data-feather="arrow-right" class="text-blue-400 ml-2"></i> | |
| <span class="text-blue-400">العودة للرئيسية</span> | |
| </a> | |
| <h1 class="text-xl font-bold">المتجر</h1> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <div class="py-20 px-4"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6 gradient-text" data-aos="fade-up"> | |
| متجر الأمن السيبراني | |
| </h1> | |
| <p class="text-xl text-gray-300 mb-12" data-aos="fade-up" data-aos-delay="200"> | |
| أدوات وخدمات الأمن السيبراني المهنية | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Products Section --> | |
| <div class="py-20 px-4"> | |
| <div class="max-w-6xl mx-auto"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Product 1 --> | |
| <!-- تم حذف منتج "جدار حماية UFW" حسب الطلب --> | |
| <!-- Product 2 - DELETED --> | |
| <!-- Product 3 - PacketFence DELETED --> | |
| <!-- تم حذف منتج "قواعد iptables المتقدمة" حسب الطلب --> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Services Section --> | |
| <div class="py-20 px-4 bg-gray-900"> | |
| <div class="max-w-6xl mx-auto"> | |
| <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">الخدمات الاستشارية</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div class="bg-gray-800 p-8 rounded-lg" data-aos="fade-up"> | |
| <i data-feather="users" class="w-12 h-12 text-blue-400 mb-4"></i> | |
| <h3 class="text-xl font-bold mb-4">استشارات أمنية</h3> | |
| <p class="text-gray-400 mb-4">استشارات أمنية مخصصة لتأمين شبكتك</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-2xl font-bold text-green-400">٣٠٠ ريال/ساعة</span> | |
| <a href="https://mtjr.at/DGS-Xd8soo" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-full transition"> | |
| اطلب الخدمة | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="py-10 px-4 bg-gray-900 border-t border-gray-800"> | |
| <div class="max-w-6xl mx-auto text-center"> | |
| <p class="text-gray-500"> | |
| © 2023 متجر الأمن السيبراني. جميع الحقوق محفوظة.<br>الرقم العمل حر FL-333236721<br>تصميم برمجي متكامل/ريان بن خالد بن عبدالمحسن الثميري<br><a href="https://salla.sa/th66" class="text-blue-400 hover:text-blue-300">https://salla.sa/th66</a> | |
| </p> | |
| </div> | |
| </footer> | |
| <script> | |
| AOS.init(); | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |