Rayan545454 commited on
Commit
630aa7f
·
verified ·
1 Parent(s): 78ce137

أضف زر +966 53 089 3127 بعدها الواتساب - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +264 -18
  3. prompts.txt +25 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Vvff55
3
- emoji: 🐢
4
- colorFrom: purple
5
- colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: vvff55
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,265 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="ar" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>عرض اليوم الوطني - دبلومات غرفة الزلفي</title>
7
+ <link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🇸🇦</text></svg>">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ @keyframes float {
15
+ 0%, 100% { transform: translateY(0px); }
16
+ 50% { transform: translateY(-20px); }
17
+ }
18
+ .float-animation {
19
+ animation: float 3s ease-in-out infinite;
20
+ }
21
+
22
+ @keyframes pulse-glow {
23
+ 0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
24
+ 50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59, 130, 246, 0.4); }
25
+ }
26
+
27
+ .pulse-glow {
28
+ animation: pulse-glow 2s ease-in-out infinite;
29
+ }
30
+
31
+ @keyframes countdown {
32
+ 0% { transform: scale(1); }
33
+ 50% { transform: scale(1.05); }
34
+ 100% { transform: scale(1); }
35
+ }
36
+
37
+ .countdown-animation {
38
+ animation: countdown 1s ease-in-out infinite;
39
+ }
40
+
41
+ .gradient-bg {
42
+ background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
43
+ }
44
+
45
+ .text-shadow {
46
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
47
+ }
48
+
49
+ .glass-effect {
50
+ backdrop-filter: blur(10px);
51
+ background: rgba(255, 255, 255, 0.1);
52
+ border: 1px solid rgba(255, 255, 255, 0.2);
53
+ }
54
+
55
+ .whatsapp-button {
56
+ transition: all 0.3s ease;
57
+ background: linear-gradient(45deg, #25D366, #128C7E);
58
+ }
59
+
60
+ .whatsapp-button:hover {
61
+ transform: translateY(-3px);
62
+ box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
63
+ }
64
+
65
+ .confetti {
66
+ position: absolute;
67
+ width: 10px;
68
+ height: 10px;
69
+ background: #fbbf24;
70
+ animation: confetti-fall 3s linear infinite;
71
+ }
72
+
73
+ @keyframes confetti-fall {
74
+ 0% {
75
+ transform: translateY(-100vh) rotate(0deg);
76
+ opacity: 1;
77
+ }
78
+ 100% {
79
+ transform: translateY(100vh) rotate(360deg);
80
+ opacity: 0;
81
+ }
82
+ }
83
+ </style>
84
+ </head>
85
+ <body class="gradient-bg min-h-screen overflow-x-hidden">
86
+ <!-- Confetti Animation -->
87
+ <div id="confetti-container"></div>
88
+
89
+ <!-- Hero Section -->
90
+ <section class="relative min-h-screen flex items-center justify-center px-4">
91
+ <div class="absolute inset-0 opacity-10">
92
+ <div class="absolute top-1/4 left-1/4 w-96 h-96 bg-green-500 rounded-full filter blur-3xl animate-pulse"></div>
93
+ <div class="absolute top-3/4 right-1/4 w-96 h-96 bg-white rounded-full filter blur-3xl animate-pulse delay-1000"></div>
94
+ </div>
95
+
96
+ <div class="text-center z-10 max-w-4xl mx-auto" data-aos="fade-up">
97
+ <!-- Saudi Flag Emoji -->
98
+ <div class="text-8xl mb-6 float-animation">🇸🇦</div>
99
+
100
+ <!-- Main Title -->
101
+ <h1 class="text-4xl md:text-6xl lg:text-7xl font-bold text-white mb-6 text-shadow">
102
+ عرض اليوم الوطني
103
+ </h1>
104
+
105
+ <!-- Subtitle -->
106
+ <p class="text-xl md:text-2xl text-yellow-300 mb-8 font-semibold">
107
+ دبلومات غرفة الزلفي - خصم خاص بمناسبة اليوم الوطني
108
+ </p>
109
+
110
+ <!-- Offer Badge -->
111
+ <div class="inline-block bg-red-600 text-white px-8 py-4 rounded-full text-2xl font-bold mb-8 pulse-glow">
112
+ <i data-feather="percent" class="inline-block w-6 h-6 ml-2"></i>
113
+ خصم اليوم الوطني
114
+ </div>
115
+
116
+ <!-- Instructions Card -->
117
+ <div class="glass-effect rounded-2xl p-8 mb-8 max-w-2xl mx-auto">
118
+ <h2 class="text-2xl font-bold text-white mb-4">للاستفادة من العرض:</h2>
119
+ <div class="text-white text-lg space-y-3">
120
+ <p class="flex items-center justify-center">
121
+ <i data-feather="message-circle" class="w-5 h-5 ml-2"></i>
122
+ أرسل على الواتساب: <span class="mr-1 font-bold text-yellow-300">"سجل الآن"</span>
123
+ </p>
124
+ <p class="text-sm text-gray-200">واذكر البيانات التالية:</p>
125
+ <div class="bg-white/20 rounded-lg p-4 mt-4">
126
+ <p class="text-xl font-bold text-yellow-300">
127
+ • الاسم: ريان بن خالد
128
+ </p>
129
+ </div>
130
+ <p class="text-lg text-green-300 font-semibold">
131
+ وبإذن الله يوصلك الخصم
132
+ </p>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Countdown Timer -->
137
+ <div class="mb-8">
138
+ <p class="text-white text-xl mb-4">العرض ينتهي خلال:</p>
139
+ <div id="countdown" class="flex justify-center space-x-4 space-x-reverse text-center">
140
+ <div class="bg-white/20 rounded-lg p-4 countdown-animation">
141
+ <div id="days" class="text-3xl font-bold text-white">00</div>
142
+ <div class="text-sm text-gray-300">يوم</div>
143
+ </div>
144
+ <div class="bg-white/20 rounded-lg p-4 countdown-animation" style="animation-delay: 0.1s;">
145
+ <div id="hours" class="text-3xl font-bold text-white">00</div>
146
+ <div class="text-sm text-gray-300">ساعة</div>
147
+ </div>
148
+ <div class="bg-white/20 rounded-lg p-4 countdown-animation" style="animation-delay: 0.2s;">
149
+ <div id="minutes" class="text-3xl font-bold text-white">00</div>
150
+ <div class="text-sm text-gray-300">دقيقة</div>
151
+ </div>
152
+ <div class="bg-white/20 rounded-lg p-4 countdown-animation" style="animation-delay: 0.3s;">
153
+ <div id="seconds" class="text-3xl font-bold text-white">00</div>
154
+ <div class="text-sm text-gray-300">ثانية</div>
155
+ </div>
156
+ </div>
157
+ </div>
158
+
159
+ <!-- WhatsApp Button -->
160
+ <div class="flex flex-col items-center space-y-4">
161
+ <a href="tel:+966530893127" class="bg-green-600 inline-flex items-center text-white font-bold py-4 px-8 rounded-full text-xl shadow-lg transform transition-all duration-300 hover:scale-110">
162
+ <i data-feather="phone" class="w-6 h-6 ml-2"></i>
163
+ +966 53 089 3127
164
+ </a>
165
+ <a href="https://wa.me/966530893127?text=%D8%B3%D8%AC%D9%84%20%D8%A7%D9%84%D8%A2%D9%86%0A%0A%D8%A7%D9%84%D8%A7%D8%B3%D9%85%3A%20%D8%B1%D9%8A%D8%A7%D9%86%20%D8%A8%D9%86%20%D8%AE%D8%A7%D9%84%D8%AF"
166
+ class="whatsapp-button inline-flex items-center text-white font-bold py-4 px-8 rounded-full text-xl shadow-lg transform transition-all duration-300 hover:scale-110">
167
+ <i data-feather="send" class="w-6 h-6 ml-2"></i>
168
+ واتساب
169
+ </a>
170
+ </div>
171
+ </div>
172
+ </section>
173
+
174
+ <!-- Contact Section -->
175
+ <section class="py-16 bg-white/10">
176
+ <div class="container mx-auto px-4 text-center">
177
+ <h3 class="text-3xl font-bold text-white mb-8" data-aos="fade-up">تواصل مباشرة</h3>
178
+ <div class="bg-white rounded-2xl p-8 max-w-md mx-auto" data-aos="fade-up" data-aos-delay="200">
179
+ <p class="text-gray-700 text-2xl font-bold mb-4">+966 53 089 3127</p>
180
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
181
+ <a href="tel:+966530893127" class="bg-green-600 text-white px-6 py-3 rounded-lg hover:bg-green-700 transition">
182
+ <i data-feather="phone" class="w-5 h-5 inline-block ml-2"></i>
183
+ اتصال مباشر
184
+ </a>
185
+ <button onclick="copyToClipboard()" class="bg-blue-600 text-white px-6 py-3 rounded-lg hover:bg-blue-700 transition">
186
+ <i data-feather="copy" class="w-5 h-5 inline-block ml-2"></i>
187
+ نسخ الرقم
188
+ </button>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </section>
193
+
194
+ <script>
195
+ // Initialize AOS
196
+ AOS.init({
197
+ duration: 1000,
198
+ once: true
199
+ });
200
+
201
+ // Initialize Feather Icons
202
+ feather.replace();
203
+
204
+ // Countdown Timer
205
+ function updateCountdown() {
206
+ const endDate = new Date();
207
+ endDate.setDate(endDate.getDate() + 7); // 7 days from now
208
+
209
+ const now = new Date().getTime();
210
+ const distance = endDate - now;
211
+
212
+ const days = Math.floor(distance / (1000 * 60 * 60 * 24));
213
+ const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
214
+ const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
215
+ const seconds = Math.floor((distance % (1000 * 60)) / 1000);
216
+
217
+ document.getElementById('days').textContent = days.toString().padStart(2, '0');
218
+ document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
219
+ document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
220
+ document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
221
+ }
222
+
223
+ setInterval(updateCountdown, 1000);
224
+ updateCountdown();
225
+
226
+ // Copy to Clipboard
227
+ function copyToClipboard() {
228
+ const text = '+966530893127';
229
+ navigator.clipboard.writeText(text).then(() => {
230
+ alert('تم نسخ الرقم بنجاح!');
231
+ });
232
+ }
233
+
234
+ // Create Confetti
235
+ function createConfetti() {
236
+ const container = document.getElementById('confetti-container');
237
+ const colors = ['#fbbf24', '#ef4444', '#10b981', '#3b82f6', '#8b5cf6'];
238
+
239
+ for (let i = 0; i < 50; i++) {
240
+ const confetti = document.createElement('div');
241
+ confetti.className = 'confetti';
242
+ confetti.style.left = Math.random() * 100 + 'vw';
243
+ confetti.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)];
244
+ confetti.style.animationDelay = Math.random() * 3 + 's';
245
+ container.appendChild(confetti);
246
+
247
+ setTimeout(() => confetti.remove(), 3000);
248
+ }
249
+ }
250
+
251
+ // Create confetti every 3 seconds
252
+ setInterval(createConfetti, 3000);
253
+ createConfetti();
254
+
255
+ // Add floating animation to button on hover
256
+ document.querySelector('.whatsapp-button').addEventListener('mouseenter', function() {
257
+ this.classList.add('float-animation');
258
+ });
259
+
260
+ document.querySelector('.whatsapp-button').addEventListener('mouseleave', function() {
261
+ this.classList.remove('float-animation');
262
+ });
263
+ </script>
264
+ </body>
265
  </html>
prompts.txt ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ صفحة أولى دبلومات غرفة الزلفي بعرض اليوم الوطني فقط
2
+ للاستفادة من العرض: أرسل على الواتساب: سجل الأن زر متحرك
3
+ ‏https://scan.page/u0GcAf
4
+ اذكر البيانات التالية:
5
+ • الاسم: ريان بن خالد
6
+ وبإذن اللّٰه يوصلك الخصم.
7
+ العرض لفترة محدودة فقط
8
+ صفحة أولى دبلومات غرفة الزلفي بعرض اليوم الوطني فقط
9
+ للاستفادة من العرض: أرسل على الواتساب: سجل الأن زر متحرك
10
+ ‏https://scan.page/u0GcAf
11
+ اذكر البيانات التالية:
12
+ • الاسم: ريان بن خالد
13
+ وبإذن اللّٰه يوصلك الخصم.
14
+ العرض لفترة محدودة فقط
15
+ صفحة أولى دبلومات غرفة الزلفي بعرض اليوم الوطني فقط
16
+ للاستفادة من العرض: أرسل على الواتساب: سجل الأن زر متحرك
17
+ ‏https://scan.page/u0GcAf
18
+ اذكر البيانات التالية:
19
+ • الاسم: ريان بن خالد
20
+ وبإذن اللّٰه يوصلك الخصم.
21
+ العرض لفترة محدودة فقط
22
+ زر واتساب https://scan.page/u0GcAf
23
+ زر الواتساب في الرابط https://scan.page/u0GcAf
24
+ +966 53 089 3127
25
+ أضف زر +966 53 089 3127 بعدها الواتساب