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>صفحة هبوط - hellos</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"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#3b82f6', | |
| secondary: '#1e40af', | |
| accent: '#60a5fa' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700;900&display=swap'); | |
| body { | |
| font-family: 'Tajawal', sans-serif; | |
| background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); | |
| min-height: 100vh; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| overflow-x: hidden; | |
| } | |
| .floating { | |
| animation: float 3s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-20px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .pulse { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { transform: scale(1); } | |
| 50% { transform: scale(1.05); } | |
| 100% { transform: scale(1); } | |
| } | |
| .wave { | |
| position: relative; | |
| height: 70px; | |
| width: 100%; | |
| background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.3' d='M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,128C672,128,768,160,864,176C960,192,1056,192,1152,197.3C1248,203,1344,213,1392,218.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"); | |
| background-size: cover; | |
| background-position: center; | |
| margin-top: -70px; | |
| } | |
| .letter { | |
| display: inline-block; | |
| transition: all 0.3s ease; | |
| } | |
| .letter:hover { | |
| transform: translateY(-10px) rotate(5deg); | |
| color: #fbbf24; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container mx-auto px-4 py-8"> | |
| <div class="text-center"> | |
| <div class="floating mb-8"> | |
| <i class="fas fa-hand-wave text-6xl text-yellow-300"></i> | |
| </div> | |
| <h1 class="text-5xl md:text-7xl font-bold text-white mb-6 pulse"> | |
| <span class="letter">h</span> | |
| <span class="letter">e</span> | |
| <span class="letter">l</span> | |
| <span class="letter">l</span> | |
| <span class="letter">o</span> | |
| <span class="letter">s</span> | |
| </h1> | |
| <p class="text-xl md:text-2xl text-blue-100 mb-10 max-w-2xl mx-auto"> | |
| مرحباً بك في صفحتنا البسيطة والجميلة | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4 mb-12"> | |
| <button class="bg-white text-blue-600 hover:bg-blue-50 font-bold py-3 px-8 rounded-full text-lg transition-all duration-300 transform hover:scale-105 shadow-lg"> | |
| ابدأ الآن | |
| </button> | |
| <button class="bg-transparent border-2 border-white text-white hover:bg-white hover:text-blue-600 font-bold py-3 px-8 rounded-full text-lg transition-all duration-300 shadow-lg"> | |
| تعرف أكثر | |
| </button> | |
| </div> | |
| <div class="bg-white bg-opacity-20 backdrop-blur-lg rounded-2xl p-6 max-w-2xl mx-auto shadow-xl"> | |
| <h2 class="text-2xl font-bold text-white mb-4">مرحباً بك في عالمنا!</h2> | |
| <p class="text-blue-100 mb-4"> | |
| هذه صفحة هبوط بسيطة تم إنشاؤها خصيصاً لتقول لك "hellos" بطريقة جميلة ومبتكرة. | |
| </p> | |
| <div class="flex justify-center space-x-4 mt-6"> | |
| <div class="w-3 h-3 bg-yellow-300 rounded-full"></div> | |
| <div class="w-3 h-3 bg-green-400 rounded-full"></div> | |
| <div class="w-3 h-3 bg-pink-400 rounded-full"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="wave"></div> | |
| <div class="absolute bottom-4 left-0 right-0 text-center text-blue-200 text-sm"> | |
| <p>© 2023 صفحة hellos - جميع الحقوق محفوظة</p> | |
| </div> | |
| <script> | |
| // إضافة تأثيرات تفاعلية على الحروف | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const letters = document.querySelectorAll('.letter'); | |
| letters.forEach((letter, index) => { | |
| // تأخير البداية لكل حرف | |
| setTimeout(() => { | |
| letter.style.animation = `bounce 0.5s ${index * 0.1}s`; | |
| }, 500); | |
| // إضافة تأثير عند التمرير | |
| letter.addEventListener('mouseover', function() { | |
| this.style.animation = 'none'; | |
| }); | |
| letter.addEventListener('mouseout', function() { | |
| this.style.animation = `bounce 0.5s ${index * 0.1}s`; | |
| }); | |
| }); | |
| // إضافة تأثيرات للزر | |
| const buttons = document.querySelectorAll('button'); | |
| buttons.forEach(button => { | |
| button.addEventListener('mouseenter', function() { | |
| this.classList.add('shadow-2xl'); | |
| }); | |
| button.addEventListener('mouseleave', function() { | |
| this.classList.remove('shadow-2xl'); | |
| }); | |
| }); | |
| }); | |
| </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=Umartheblack/ghgggff" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |