JayStormX8 commited on
Commit
22190b9
·
verified ·
1 Parent(s): 29310d1

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +277 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Sky Ai
3
- emoji: 🦀
4
- colorFrom: blue
5
- colorTo: purple
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: sky-ai
3
+ emoji: 🐳
4
+ colorFrom: green
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,277 @@
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>Sky AI - Instant App Generator</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
+ @keyframes float {
11
+ 0%, 100% { transform: translateY(0); }
12
+ 50% { transform: translateY(-10px); }
13
+ }
14
+ .floating {
15
+ animation: float 3s ease-in-out infinite;
16
+ }
17
+ .card-hover:hover {
18
+ transform: translateY(-5px);
19
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
20
+ }
21
+ .sky-gradient {
22
+ background: linear-gradient(135deg, #38bdf8, #0284c7);
23
+ }
24
+ .cloud-bg {
25
+ background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
26
+ }
27
+ .pulse {
28
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
29
+ }
30
+ @keyframes pulse {
31
+ 0%, 100% { opacity: 1; }
32
+ 50% { opacity: 0.5; }
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="cloud-bg min-h-screen font-sans">
37
+ <div class="container mx-auto px-4 py-12">
38
+ <div class="text-center mb-16">
39
+ <div class="inline-flex items-center mb-4 sky-gradient text-white px-6 py-2 rounded-full">
40
+ <i class="fas fa-cloud text-xl mr-2"></i>
41
+ <span class="font-bold">Sky AI</span>
42
+ </div>
43
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Generate Apps in Minutes</h1>
44
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Instantly create, test, and deploy your dream app with Sky AI's powerful generator</p>
45
+ <div class="mt-6">
46
+ <div class="inline-flex items-center bg-white px-4 py-2 rounded-full shadow-sm">
47
+ <div class="w-2 h-2 bg-green-500 rounded-full mr-2 pulse"></div>
48
+ <span class="text-sm font-medium text-gray-700">Ready to generate in seconds</span>
49
+ </div>
50
+ </div>
51
+ </div>
52
+
53
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
54
+ <!-- Step 1 -->
55
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
56
+ <div class="p-6">
57
+ <div class="w-16 h-16 sky-gradient rounded-full flex items-center justify-center text-white text-2xl mb-4 mx-auto">
58
+ <i class="fas fa-comment-dots"></i>
59
+ </div>
60
+ <h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">1. Describe Your Vision</h3>
61
+ <p class="text-gray-600 text-center">Simply tell us what you need - no technical jargon required.</p>
62
+ </div>
63
+ <div class="px-6 pb-6">
64
+ <div class="bg-gray-100 rounded-lg p-4">
65
+ <p class="text-sm text-gray-700 italic">"I need a meditation app with nature sounds and daily reminders"</p>
66
+ </div>
67
+ </div>
68
+ </div>
69
+
70
+ <!-- Step 2 -->
71
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
72
+ <div class="p-6">
73
+ <div class="w-16 h-16 sky-gradient rounded-full flex items-center justify-center text-white text-2xl mb-4 mx-auto">
74
+ <i class="fas fa-bolt"></i>
75
+ </div>
76
+ <h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">2. Sky AI Generates Instantly</h3>
77
+ <p class="text-gray-600 text-center">Watch your app come to life in under a minute.</p>
78
+ </div>
79
+ <div class="px-6 pb-6 flex justify-center">
80
+ <div class="relative">
81
+ <div class="w-32 h-32 bg-blue-50 rounded-lg flex items-center justify-center">
82
+ <div class="text-center">
83
+ <i class="fas fa-cloud text-blue-300 text-5xl mb-2"></i>
84
+ <div class="text-xs font-medium text-blue-500">Generating...</div>
85
+ <div class="text-xs text-blue-400 mt-1">45 seconds remaining</div>
86
+ </div>
87
+ </div>
88
+ <div class="absolute -bottom-2 -right-2 bg-green-500 text-white text-xs px-2 py-1 rounded-full flex items-center">
89
+ <i class="fas fa-check-circle mr-1"></i>
90
+ <span>Ready</span>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </div>
95
+
96
+ <!-- Step 3 -->
97
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 card-hover">
98
+ <div class="p-6">
99
+ <div class="w-16 h-16 sky-gradient rounded-full flex items-center justify-center text-white text-2xl mb-4 mx-auto">
100
+ <i class="fas fa-mobile-alt"></i>
101
+ </div>
102
+ <h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">3. Test Immediately</h3>
103
+ <p class="text-gray-600 text-center">Get a live preview and shareable link right away.</p>
104
+ </div>
105
+ <div class="px-6 pb-6 flex justify-center">
106
+ <div class="relative floating">
107
+ <div class="w-24 h-40 bg-gradient-to-b from-blue-400 to-blue-600 rounded-xl shadow-md">
108
+ <div class="absolute top-2 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-white bg-opacity-30 rounded-full"></div>
109
+ <div class="absolute top-6 left-2 right-2 h-24 bg-white bg-opacity-20 rounded flex items-center justify-center">
110
+ <i class="fas fa-play-circle text-white text-3xl opacity-70"></i>
111
+ </div>
112
+ <div class="absolute bottom-2 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-white bg-opacity-30 rounded-full"></div>
113
+ </div>
114
+ <div class="absolute -bottom-4 left-1/2 transform -translate-x-1/2 bg-blue-500 text-white text-xs px-2 py-1 rounded-full flex items-center">
115
+ <i class="fas fa-external-link-alt mr-1 text-xs"></i>
116
+ <span>skyai.app/demo123</span>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+
123
+ <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden mb-16">
124
+ <div class="md:flex">
125
+ <div class="md:w-1/2 p-8 sky-gradient flex items-center justify-center">
126
+ <div class="relative">
127
+ <div class="w-64 h-96 bg-white rounded-lg shadow-xl transform rotate-3">
128
+ <div class="absolute top-2 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-gray-300 rounded-full"></div>
129
+ <div class="absolute top-8 left-4 right-4 bottom-4 bg-gray-50 rounded">
130
+ <div class="absolute top-4 left-4 right-4 h-8 bg-blue-500 rounded flex items-center justify-between px-3">
131
+ <i class="fas fa-chevron-left text-white text-sm"></i>
132
+ <span class="text-white text-sm font-medium">Sky AI Generator</span>
133
+ <i class="fas fa-ellipsis-h text-white text-sm"></i>
134
+ </div>
135
+ <div class="absolute top-16 left-4 right-4 h-4 bg-blue-200 rounded"></div>
136
+ <div class="absolute top-24 left-4 right-4 h-20 bg-white rounded shadow-inner p-2">
137
+ <div class="flex items-center mb-2">
138
+ <div class="w-6 h-6 bg-blue-100 rounded-full mr-2"></div>
139
+ <div class="h-2 bg-blue-100 rounded-full flex-1"></div>
140
+ </div>
141
+ <div class="flex items-center mb-2">
142
+ <div class="w-6 h-6 bg-blue-100 rounded-full mr-2"></div>
143
+ <div class="h-2 bg-blue-100 rounded-full flex-1"></div>
144
+ </div>
145
+ <div class="flex items-center">
146
+ <div class="w-6 h-6 bg-blue-100 rounded-full mr-2"></div>
147
+ <div class="h-2 bg-blue-100 rounded-full flex-1"></div>
148
+ </div>
149
+ </div>
150
+ <div class="absolute bottom-4 left-4 right-4 h-10 bg-blue-500 rounded-full flex items-center justify-center">
151
+ <span class="text-white text-sm font-medium">Generate Now</span>
152
+ </div>
153
+ </div>
154
+ <div class="absolute bottom-2 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-gray-300 rounded-full"></div>
155
+ </div>
156
+ <div class="absolute -bottom-6 -right-6 bg-white p-3 rounded-full shadow-lg">
157
+ <i class="fas fa-bolt text-blue-500 text-2xl"></i>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ <div class="md:w-1/2 p-8">
162
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">Why Sky AI Stands Out</h2>
163
+ <ul class="space-y-4">
164
+ <li class="flex items-start">
165
+ <div class="flex-shrink-0 mt-1">
166
+ <div class="w-6 h-6 rounded-full bg-blue-500 text-white flex items-center justify-center">
167
+ <i class="fas fa-bolt text-xs"></i>
168
+ </div>
169
+ </div>
170
+ <p class="ml-3 text-gray-700"><span class="font-semibold">Lightning fast:</span> Generate working apps in under 60 seconds</p>
171
+ </li>
172
+ <li class="flex items-start">
173
+ <div class="flex-shrink-0 mt-1">
174
+ <div class="w-6 h-6 rounded-full bg-blue-500 text-white flex items-center justify-center">
175
+ <i class="fas fa-play text-xs"></i>
176
+ </div>
177
+ </div>
178
+ <p class="ml-3 text-gray-700"><span class="font-semibold">Instant testing:</span> Get a live URL immediately to share with stakeholders</p>
179
+ </li>
180
+ <li class="flex items-start">
181
+ <div class="flex-shrink-0 mt-1">
182
+ <div class="w-6 h-6 rounded-full bg-blue-500 text-white flex items-center justify-center">
183
+ <i class="fas fa-layer-group text-xs"></i>
184
+ </div>
185
+ </div>
186
+ <p class="ml-3 text-gray-700"><span class="font-semibold">No setup:</span> Works right in your browser with zero installation</p>
187
+ </li>
188
+ <li class="flex items-start">
189
+ <div class="flex-shrink-0 mt-1">
190
+ <div class="w-6 h-6 rounded-full bg-blue-500 text-white flex items-center justify-center">
191
+ <i class="fas fa-infinity text-xs"></i>
192
+ </div>
193
+ </div>
194
+ <p class="ml-3 text-gray-700"><span class="font-semibold">Unlimited iterations:</span> Regenerate and tweak until it's perfect</p>
195
+ </li>
196
+ </ul>
197
+ <button class="mt-8 w-full sky-gradient text-white py-3 px-6 rounded-lg font-medium hover:opacity-90 transition-all duration-300 shadow-lg flex items-center justify-center">
198
+ <i class="fas fa-bolt mr-2"></i>
199
+ Generate Your First App
200
+ </button>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <div class="text-center mb-16">
206
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Sky AI FAQs</h2>
207
+ <div class="max-w-3xl mx-auto space-y-4">
208
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
209
+ <button onclick="toggleFAQ(1)" class="w-full flex justify-between items-center p-4 bg-gray-50 hover:bg-gray-100 transition-colors duration-200">
210
+ <span class="font-medium text-gray-800">How quickly can I test my generated app?</span>
211
+ <i id="faq-icon-1" class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
212
+ </button>
213
+ <div id="faq-content-1" class="hidden px-4 pb-4 text-gray-600">
214
+ Immediately! Sky AI provides a live testing URL the moment generation completes (typically under a minute). You can share this link with anyone to get feedback.
215
+ </div>
216
+ </div>
217
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
218
+ <button onclick="toggleFAQ(2)" class="w-full flex justify-between items-center p-4 bg-gray-50 hover:bg-gray-100 transition-colors duration-200">
219
+ <span class="font-medium text-gray-800">What kind of apps can Sky AI generate?</span>
220
+ <i id="faq-icon-2" class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
221
+ </button>
222
+ <div id="faq-content-2" class="hidden px-4 pb-4 text-gray-600">
223
+ Sky AI can create a wide range of web apps including dashboards, e-commerce stores, social networks, productivity tools, and more. The more specific your description, the better the results!
224
+ </div>
225
+ </div>
226
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
227
+ <button onclick="toggleFAQ(3)" class="w-full flex justify-between items-center p-4 bg-gray-50 hover:bg-gray-100 transition-colors duration-200">
228
+ <span class="font-medium text-gray-800">Can I export the code from Sky AI?</span>
229
+ <i id="faq-icon-3" class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
230
+ </button>
231
+ <div id="faq-content-3" class="hidden px-4 pb-4 text-gray-600">
232
+ Yes! All apps generated with Sky AI come with exportable HTML, CSS, and JavaScript code that you can download and host anywhere. Premium plans also include React and Vue.js exports.
233
+ </div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <div class="text-center py-8 border-t border-gray-200">
239
+ <div class="inline-flex items-center mb-4 text-blue-600">
240
+ <i class="fas fa-cloud text-2xl mr-2"></i>
241
+ <span class="text-2xl font-bold">Sky AI</span>
242
+ </div>
243
+ <p class="text-gray-600 mb-6">The fastest way to turn ideas into working apps</p>
244
+ <button class="sky-gradient text-white py-3 px-8 rounded-full font-medium hover:opacity-90 transition-all duration-300 shadow-lg flex items-center mx-auto">
245
+ <i class="fas fa-play mr-2"></i>
246
+ Watch Demo
247
+ </button>
248
+ </div>
249
+ </div>
250
+
251
+ <script>
252
+ function toggleFAQ(id) {
253
+ const content = document.getElementById(`faq-content-${id}`);
254
+ const icon = document.getElementById(`faq-icon-${id}`);
255
+
256
+ content.classList.toggle('hidden');
257
+ icon.classList.toggle('fa-chevron-down');
258
+ icon.classList.toggle('fa-chevron-up');
259
+ }
260
+
261
+ // Real-time countdown for generation time
262
+ document.addEventListener('DOMContentLoaded', function() {
263
+ const countdownElement = document.querySelector('.text-blue-400');
264
+ if (countdownElement) {
265
+ let seconds = 45;
266
+ setInterval(() => {
267
+ seconds = Math.max(0, seconds - 1);
268
+ countdownElement.textContent = `${seconds} seconds remaining`;
269
+ if (seconds === 0) {
270
+ countdownElement.textContent = "Ready to test!";
271
+ }
272
+ }, 1000);
273
+ }
274
+ });
275
+ </script>
276
+ <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=JayStormX8/sky-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
277
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ build a simple app generator explainer image
2
+ Great name this Sky Ai and it only takes minutes to generate and they can be used instantly to test.