ABO3MR commited on
Commit
d61a14d
·
verified ·
1 Parent(s): 3a07a93

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +200 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Df
3
- emoji: 👁
4
- colorFrom: red
5
- colorTo: indigo
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: df
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: blue
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,200 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Egyptian Morning Chat</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Tajawal', sans-serif;
14
+ background-color: #f8f4e9;
15
+ }
16
+
17
+ .speech-bubble {
18
+ position: relative;
19
+ background: #ffffff;
20
+ border-radius: 1.5rem;
21
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
22
+ }
23
+
24
+ .speech-bubble:after {
25
+ content: '';
26
+ position: absolute;
27
+ bottom: -10px;
28
+ left: 20px;
29
+ border-width: 10px 10px 0;
30
+ border-style: solid;
31
+ border-color: #ffffff transparent;
32
+ }
33
+
34
+ .street-scene {
35
+ background: linear-gradient(180deg, #6bb9f0 0%, #89c4f4 50%, #aed6f1 100%);
36
+ position: relative;
37
+ overflow: hidden;
38
+ }
39
+
40
+ .building {
41
+ position: absolute;
42
+ background: #e67e22;
43
+ bottom: 0;
44
+ }
45
+
46
+ .window {
47
+ position: absolute;
48
+ background: #f9e79f;
49
+ border: 1px solid #f1c40f;
50
+ }
51
+
52
+ .palm-tree {
53
+ position: absolute;
54
+ }
55
+
56
+ .palm-trunk {
57
+ position: absolute;
58
+ background: #8b4513;
59
+ width: 15px;
60
+ }
61
+
62
+ .palm-leaves {
63
+ position: absolute;
64
+ width: 0;
65
+ height: 0;
66
+ border-left: 15px solid transparent;
67
+ border-right: 15px solid transparent;
68
+ border-bottom: 40px solid #27ae60;
69
+ bottom: 100%;
70
+ transform-origin: bottom center;
71
+ }
72
+
73
+ .animated {
74
+ animation: float 3s ease-in-out infinite;
75
+ }
76
+
77
+ @keyframes float {
78
+ 0%, 100% { transform: translateY(0); }
79
+ 50% { transform: translateY(-10px); }
80
+ }
81
+
82
+ .forsa-logo {
83
+ background: linear-gradient(135deg, #3498db, #9b59b6);
84
+ -webkit-background-clip: text;
85
+ background-clip: text;
86
+ color: transparent;
87
+ font-weight: 700;
88
+ }
89
+ </style>
90
+ </head>
91
+ <body class="min-h-screen flex items-center justify-center p-4">
92
+ <div class="street-scene w-full max-w-4xl rounded-3xl shadow-xl overflow-hidden relative h-96">
93
+ <!-- Background buildings -->
94
+ <div class="building w-24 h-48 left-10 rounded-t-lg" style="background: #d35400;"></div>
95
+ <div class="building w-32 h-64 left-40 rounded-t-lg" style="background: #e67e22;"></div>
96
+ <div class="building w-20 h-56 left-80 rounded-t-lg" style="background: #f39c12;"></div>
97
+ <div class="building w-28 h-60 right-10 rounded-t-lg" style="background: #d35400;"></div>
98
+
99
+ <!-- Windows -->
100
+ <div class="window w-6 h-8 left-16 bottom-32 rounded-sm"></div>
101
+ <div class="window w-6 h-8 left-16 bottom-44 rounded-sm"></div>
102
+ <div class="window w-8 h-8 left-52 bottom-40 rounded-sm"></div>
103
+ <div class="window w-8 h-8 left-52 bottom-56 rounded-sm"></div>
104
+ <div class="window w-6 h-8 left-88 bottom-44 rounded-sm"></div>
105
+ <div class="window w-6 h-8 right-20 bottom-48 rounded-sm"></div>
106
+
107
+ <!-- Palm trees -->
108
+ <div class="palm-tree left-24 bottom-0">
109
+ <div class="palm-trunk h-24"></div>
110
+ <div class="palm-leaves" style="left: -15px; transform: rotate(-20deg);"></div>
111
+ <div class="palm-leaves" style="left: -15px; transform: rotate(0deg);"></div>
112
+ <div class="palm-leaves" style="left: -15px; transform: rotate(20deg);"></div>
113
+ </div>
114
+
115
+ <div class="palm-tree right-32 bottom-0">
116
+ <div class="palm-trunk h-32"></div>
117
+ <div class="palm-leaves" style="left: -15px; transform: rotate(-15deg);"></div>
118
+ <div class="palm-leaves" style="left: -15px; transform: rotate(5deg);"></div>
119
+ <div class="palm-leaves" style="left: -15px; transform: rotate(25deg);"></div>
120
+ </div>
121
+
122
+ <!-- Sun -->
123
+ <div class="absolute top-8 right-12 w-16 h-16 bg-yellow-300 rounded-full shadow-lg"></div>
124
+
125
+ <!-- Characters -->
126
+ <div class="absolute bottom-8 left-1/4 transform -translate-x-1/2 flex items-end animated">
127
+ <!-- Samah -->
128
+ <div class="relative mr-4">
129
+ <div class="w-16 h-16 bg-yellow-100 rounded-full border-4 border-white shadow-md flex items-center justify-center">
130
+ <div class="w-4 h-4 bg-green-500 rounded-full absolute top-3 right-3"></div>
131
+ <div class="w-8 h-4 bg-pink-200 rounded-full absolute bottom-2"></div>
132
+ </div>
133
+ <div class="absolute -top-12 left-1/2 transform -translate-x-1/2 w-48">
134
+ <div class="speech-bubble p-4 text-sm text-gray-800">
135
+ <p>سمعت يا نها؟ فيه موقع وتطبيق اسمه <span class="forsa-logo">فرصة</span> بيبيع كل حاجة. أسعاره جامدة!</p>
136
+ </div>
137
+ </div>
138
+ <div class="w-12 h-20 bg-green-200 absolute -bottom-20 left-2 rounded-t-full" style="background-color: #a3e4d7;"></div>
139
+ <div class="w-16 h-8 bg-blue-500 absolute -bottom-8 left-0 rounded-t-full"></div>
140
+ </div>
141
+
142
+ <!-- Noha -->
143
+ <div class="relative">
144
+ <div class="w-16 h-16 bg-amber-200 rounded-full border-4 border-white shadow-md flex items-center justify-center">
145
+ <div class="w-4 h-4 bg-brown-500 rounded-full absolute top-3 right-3" style="background-color: #8d6e63;"></div>
146
+ <div class="w-8 h-4 bg-pink-200 rounded-full absolute bottom-2"></div>
147
+ </div>
148
+ <div class="absolute -top-12 left-1/2 transform -translate-x-1/2 w-48">
149
+ <div class="speech-bubble p-4 text-sm text-gray-800">
150
+ <p>ايوه سمعت عنه. ليه ما تجربي وتشوفي بنفسك؟</p>
151
+ </div>
152
+ </div>
153
+ <div class="w-12 h-20 bg-pink-200 absolute -bottom-20 left-2 rounded-t-full" style="background-color: #f8bbd0;"></div>
154
+ <div class="w-16 h-8 bg-pink-500 absolute -bottom-8 left-0 rounded-t-full"></div>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Street -->
159
+ <div class="absolute bottom-0 w-full h-16 bg-gray-400"></div>
160
+ <div class="absolute bottom-16 w-full h-2 bg-gray-300"></div>
161
+ <div class="absolute bottom-14 w-full h-4 bg-gray-500 opacity-30"></div>
162
+
163
+ <!-- Forsa App Mockup -->
164
+ <div class="absolute top-8 left-8 bg-white rounded-xl shadow-2xl p-3 w-32 transform rotate-6 hidden md:block">
165
+ <div class="bg-gradient-to-br from-blue-400 to-purple-500 rounded-lg p-2 text-center">
166
+ <i class="fas fa-shopping-bag text-white text-2xl"></i>
167
+ <div class="text-white font-bold mt-1 text-xs">Forsa</div>
168
+ </div>
169
+ <div class="mt-2 text-center text-xs font-semibold text-gray-700">كل ما تحتاجه في مكان واحد</div>
170
+ </div>
171
+
172
+ <!-- Birds -->
173
+ <div class="absolute top-16 left-1/4">
174
+ <i class="fas fa-dove text-gray-200 text-xl opacity-70"></i>
175
+ </div>
176
+ <div class="absolute top-20 left-1/3">
177
+ <i class="fas fa-dove text-gray-200 text-xl opacity-70"></i>
178
+ </div>
179
+ </div>
180
+
181
+ <script>
182
+ // Add some interactive elements
183
+ document.addEventListener('DOMContentLoaded', function() {
184
+ // Make the Forsa app mockup pulse
185
+ const appMockup = document.querySelector('.absolute.top-8.left-8');
186
+ if(appMockup) {
187
+ setInterval(() => {
188
+ appMockup.classList.toggle('scale-105');
189
+ }, 1500);
190
+ }
191
+
192
+ // Add floating animation to speech bubbles
193
+ const bubbles = document.querySelectorAll('.speech-bubble');
194
+ bubbles.forEach((bubble, index) => {
195
+ bubble.style.animation = `float ${3 + index}s ease-in-out infinite`;
196
+ });
197
+ });
198
+ </script>
199
+ <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=ABO3MR/df" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
200
+ </html>