MrEzzat commited on
Commit
b8fbd6f
·
verified ·
1 Parent(s): 528f746

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +612 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Audio Edititng
3
- emoji: 🔥
4
- colorFrom: gray
5
  colorTo: gray
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: audio-edititng
3
+ emoji: 🐳
4
+ colorFrom: purple
5
  colorTo: gray
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,612 @@
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>Waveform - Professional Audio Editing SaaS</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
+ /* Custom CSS for audio waveform */
11
+ .waveform-container {
12
+ height: 120px;
13
+ background: linear-gradient(90deg, rgba(30,58,138,0.2) 0%, rgba(79,70,229,0.2) 100%);
14
+ border-radius: 8px;
15
+ position: relative;
16
+ overflow: hidden;
17
+ }
18
+
19
+ .waveform {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 100%;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ }
29
+
30
+ .waveform-bar {
31
+ width: 3px;
32
+ background-color: #4f46e5;
33
+ border-radius: 3px;
34
+ transition: height 0.3s ease;
35
+ }
36
+
37
+ .playhead {
38
+ position: absolute;
39
+ top: 0;
40
+ left: 0;
41
+ width: 2px;
42
+ height: 100%;
43
+ background-color: #ffffff;
44
+ z-index: 10;
45
+ box-shadow: 0 0 5px rgba(255,255,255,0.8);
46
+ }
47
+
48
+ .effect-card:hover {
49
+ transform: translateY(-5px);
50
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
51
+ }
52
+
53
+ /* Custom scrollbar */
54
+ ::-webkit-scrollbar {
55
+ width: 8px;
56
+ height: 8px;
57
+ }
58
+
59
+ ::-webkit-scrollbar-track {
60
+ background: #f1f1f1;
61
+ border-radius: 10px;
62
+ }
63
+
64
+ ::-webkit-scrollbar-thumb {
65
+ background: #888;
66
+ border-radius: 10px;
67
+ }
68
+
69
+ ::-webkit-scrollbar-thumb:hover {
70
+ background: #555;
71
+ }
72
+
73
+ /* Animation for recording */
74
+ @keyframes pulse {
75
+ 0% {
76
+ transform: scale(1);
77
+ opacity: 1;
78
+ }
79
+ 50% {
80
+ transform: scale(1.1);
81
+ opacity: 0.7;
82
+ }
83
+ 100% {
84
+ transform: scale(1);
85
+ opacity: 1;
86
+ }
87
+ }
88
+
89
+ .recording-animation {
90
+ animation: pulse 1.5s infinite;
91
+ }
92
+ </style>
93
+ </head>
94
+ <body class="bg-gray-50 text-gray-800 font-sans">
95
+ <!-- Navigation -->
96
+ <nav class="bg-indigo-900 text-white shadow-lg">
97
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
98
+ <div class="flex justify-between h-16 items-center">
99
+ <div class="flex items-center">
100
+ <i class="fas fa-wave-square text-2xl mr-2 text-indigo-300"></i>
101
+ <span class="text-xl font-bold">Waveform</span>
102
+ </div>
103
+ <div class="hidden md:flex items-center space-x-8">
104
+ <a href="#" class="hover:text-indigo-200 transition">Features</a>
105
+ <a href="#" class="hover:text-indigo-200 transition">Pricing</a>
106
+ <a href="#" class="hover:text-indigo-200 transition">Tutorials</a>
107
+ <a href="#" class="hover:text-indigo-200 transition">Blog</a>
108
+ </div>
109
+ <div class="flex items-center space-x-4">
110
+ <button class="px-4 py-2 rounded-md bg-indigo-700 hover:bg-indigo-600 transition">Login</button>
111
+ <button class="px-4 py-2 rounded-md bg-white text-indigo-900 hover:bg-gray-100 transition">Sign Up</button>
112
+ </div>
113
+ <button class="md:hidden">
114
+ <i class="fas fa-bars text-xl"></i>
115
+ </button>
116
+ </div>
117
+ </div>
118
+ </nav>
119
+
120
+ <!-- Hero Section -->
121
+ <div class="bg-gradient-to-r from-indigo-900 to-purple-900 text-white py-20">
122
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
123
+ <div class="md:flex items-center justify-between">
124
+ <div class="md:w-1/2 mb-10 md:mb-0">
125
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Professional Audio Editing in Your Browser</h1>
126
+ <p class="text-xl mb-8 text-indigo-100">Edit, mix, and master audio files with our powerful cloud-based tools. No downloads required.</p>
127
+ <div class="flex space-x-4">
128
+ <button class="px-6 py-3 rounded-md bg-white text-indigo-900 font-medium hover:bg-gray-100 transition">Start Free Trial</button>
129
+ <button class="px-6 py-3 rounded-md border border-white text-white hover:bg-white hover:bg-opacity-10 transition">Watch Demo</button>
130
+ </div>
131
+ </div>
132
+ <div class="md:w-1/2 relative">
133
+ <div class="bg-white bg-opacity-10 backdrop-blur-lg rounded-xl p-6 shadow-2xl">
134
+ <div class="flex justify-between items-center mb-4">
135
+ <div class="flex space-x-2">
136
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
137
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
138
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
139
+ </div>
140
+ <span class="text-sm text-indigo-200">demo.wav</span>
141
+ </div>
142
+ <div class="waveform-container mb-4">
143
+ <div class="waveform" id="demoWaveform"></div>
144
+ <div class="playhead" id="demoPlayhead"></div>
145
+ </div>
146
+ <div class="flex justify-between items-center">
147
+ <div class="flex space-x-4">
148
+ <button class="w-10 h-10 rounded-full bg-indigo-700 hover:bg-indigo-600 flex items-center justify-center">
149
+ <i class="fas fa-play"></i>
150
+ </button>
151
+ <button class="w-10 h-10 rounded-full bg-indigo-700 hover:bg-indigo-600 flex items-center justify-center">
152
+ <i class="fas fa-pause"></i>
153
+ </button>
154
+ <button class="w-10 h-10 rounded-full bg-indigo-700 hover:bg-indigo-600 flex items-center justify-center">
155
+ <i class="fas fa-redo"></i>
156
+ </button>
157
+ </div>
158
+ <div class="text-sm text-indigo-200">1:24 / 3:45</div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Main Editor Section -->
167
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
168
+ <div class="flex flex-col lg:flex-row gap-8">
169
+ <!-- Left Sidebar - Tracks -->
170
+ <div class="lg:w-1/4 bg-white rounded-xl shadow-md p-6">
171
+ <div class="flex justify-between items-center mb-6">
172
+ <h2 class="text-xl font-bold">Tracks</h2>
173
+ <button class="text-indigo-600 hover:text-indigo-800">
174
+ <i class="fas fa-plus"></i> Add Track
175
+ </button>
176
+ </div>
177
+
178
+ <div class="space-y-4">
179
+ <div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 transition">
180
+ <div class="flex justify-between items-center mb-2">
181
+ <span class="font-medium">Vocals</span>
182
+ <div class="flex space-x-2">
183
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-eye"></i></button>
184
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-volume-up"></i></button>
185
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-ellipsis-v"></i></button>
186
+ </div>
187
+ </div>
188
+ <div class="h-2 bg-gray-100 rounded-full overflow-hidden">
189
+ <div class="h-full bg-indigo-500 w-3/4"></div>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 transition">
194
+ <div class="flex justify-between items-center mb-2">
195
+ <span class="font-medium">Guitar</span>
196
+ <div class="flex space-x-2">
197
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-eye"></i></button>
198
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-volume-up"></i></button>
199
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-ellipsis-v"></i></button>
200
+ </div>
201
+ </div>
202
+ <div class="h-2 bg-gray-100 rounded-full overflow-hidden">
203
+ <div class="h-full bg-green-500 w-1/2"></div>
204
+ </div>
205
+ </div>
206
+
207
+ <div class="border border-gray-200 rounded-lg p-4 hover:border-indigo-300 transition">
208
+ <div class="flex justify-between items-center mb-2">
209
+ <span class="font-medium">Drums</span>
210
+ <div class="flex space-x-2">
211
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-eye"></i></button>
212
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-volume-up"></i></button>
213
+ <button class="text-gray-500 hover:text-indigo-600"><i class="fas fa-ellipsis-v"></i></button>
214
+ </div>
215
+ </div>
216
+ <div class="h-2 bg-gray-100 rounded-full overflow-hidden">
217
+ <div class="h-full bg-yellow-500 w-2/3"></div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+
222
+ <div class="mt-6 pt-6 border-t border-gray-200">
223
+ <h3 class="font-medium mb-3">Master Track</h3>
224
+ <div class="flex items-center space-x-4">
225
+ <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600">
226
+ <i class="fas fa-sliders-h"></i>
227
+ </div>
228
+ <div class="flex-1">
229
+ <div class="h-2 bg-gray-100 rounded-full overflow-hidden">
230
+ <div class="h-full bg-purple-500 w-4/5"></div>
231
+ </div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Main Editor Area -->
238
+ <div class="lg:w-2/4 bg-white rounded-xl shadow-md p-6">
239
+ <div class="flex justify-between items-center mb-6">
240
+ <h2 class="text-xl font-bold">Timeline</h2>
241
+ <div class="flex space-x-4">
242
+ <button class="px-3 py-1 rounded-md bg-gray-100 hover:bg-gray-200 text-sm">Snap: On</button>
243
+ <button class="px-3 py-1 rounded-md bg-gray-100 hover:bg-gray-200 text-sm">Grid: 1/4</button>
244
+ <button class="px-3 py-1 rounded-md bg-gray-100 hover:bg-gray-200 text-sm">Zoom: 100%</button>
245
+ </div>
246
+ </div>
247
+
248
+ <div class="waveform-container mb-4">
249
+ <div class="waveform" id="mainWaveform"></div>
250
+ <div class="playhead" id="mainPlayhead"></div>
251
+ </div>
252
+
253
+ <div class="bg-gray-50 rounded-lg p-4 mb-6">
254
+ <div class="flex items-center space-x-4 overflow-x-auto pb-2">
255
+ <div class="flex-shrink-0 w-48 h-16 bg-indigo-100 rounded-md border border-indigo-200 relative">
256
+ <div class="absolute inset-0 flex items-center justify-center text-indigo-500">
257
+ <i class="fas fa-music mr-2"></i>
258
+ <span class="text-sm">Vocal Take 1</span>
259
+ </div>
260
+ </div>
261
+ <div class="flex-shrink-0 w-32 h-16 bg-green-100 rounded-md border border-green-200 relative">
262
+ <div class="absolute inset-0 flex items-center justify-center text-green-600">
263
+ <i class="fas fa-guitar mr-2"></i>
264
+ <span class="text-sm">Guitar</span>
265
+ </div>
266
+ </div>
267
+ <div class="flex-shrink-0 w-64 h-16 bg-yellow-100 rounded-md border border-yellow-200 relative">
268
+ <div class="absolute inset-0 flex items-center justify-center text-yellow-600">
269
+ <i class="fas fa-drum mr-2"></i>
270
+ <span class="text-sm">Drum Loop</span>
271
+ </div>
272
+ </div>
273
+ <div class="flex-shrink-0 w-24 h-16 bg-purple-100 rounded-md border border-purple-200 relative">
274
+ <div class="absolute inset-0 flex items-center justify-center text-purple-600">
275
+ <i class="fas fa-bell mr-2"></i>
276
+ <span class="text-sm">Chimes</span>
277
+ </div>
278
+ </div>
279
+ </div>
280
+ </div>
281
+
282
+ <div class="flex justify-between items-center">
283
+ <div class="flex space-x-4">
284
+ <button class="w-12 h-12 rounded-full bg-indigo-600 text-white hover:bg-indigo-700 flex items-center justify-center">
285
+ <i class="fas fa-play"></i>
286
+ </button>
287
+ <button class="w-12 h-12 rounded-full bg-gray-200 hover:bg-gray-300 flex items-center justify-center">
288
+ <i class="fas fa-pause"></i>
289
+ </button>
290
+ <button class="w-12 h-12 rounded-full bg-gray-200 hover:bg-gray-300 flex items-center justify-center">
291
+ <i class="fas fa-stop"></i>
292
+ </button>
293
+ <button class="w-12 h-12 rounded-full bg-gray-200 hover:bg-gray-300 flex items-center justify-center">
294
+ <i class="fas fa-redo"></i>
295
+ </button>
296
+ </div>
297
+ <div class="text-gray-600">00:02:34 / 00:04:12</div>
298
+ </div>
299
+ </div>
300
+
301
+ <!-- Right Sidebar - Effects & Tools -->
302
+ <div class="lg:w-1/4 bg-white rounded-xl shadow-md p-6">
303
+ <div class="flex justify-between items-center mb-6">
304
+ <h2 class="text-xl font-bold">Effects & Tools</h2>
305
+ <button class="text-indigo-600 hover:text-indigo-800">
306
+ <i class="fas fa-search"></i>
307
+ </button>
308
+ </div>
309
+
310
+ <div class="space-y-4">
311
+ <div class="effect-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition cursor-pointer">
312
+ <div class="flex items-center space-x-3">
313
+ <div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-600">
314
+ <i class="fas fa-sliders-h"></i>
315
+ </div>
316
+ <div>
317
+ <h3 class="font-medium">EQ</h3>
318
+ <p class="text-sm text-gray-500">Adjust frequency balance</p>
319
+ </div>
320
+ </div>
321
+ </div>
322
+
323
+ <div class="effect-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition cursor-pointer">
324
+ <div class="flex items-center space-x-3">
325
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
326
+ <i class="fas fa-compress-arrows-alt"></i>
327
+ </div>
328
+ <div>
329
+ <h3 class="font-medium">Compressor</h3>
330
+ <p class="text-sm text-gray-500">Control dynamic range</p>
331
+ </div>
332
+ </div>
333
+ </div>
334
+
335
+ <div class="effect-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition cursor-pointer">
336
+ <div class="flex items-center space-x-3">
337
+ <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center text-green-600">
338
+ <i class="fas fa-echo"></i>
339
+ </div>
340
+ <div>
341
+ <h3 class="font-medium">Reverb</h3>
342
+ <p class="text-sm text-gray-500">Add space and depth</p>
343
+ </div>
344
+ </div>
345
+ </div>
346
+
347
+ <div class="effect-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition cursor-pointer">
348
+ <div class="flex items-center space-x-3">
349
+ <div class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center text-yellow-600">
350
+ <i class="fas fa-clock"></i>
351
+ </div>
352
+ <div>
353
+ <h3 class="font-medium">Delay</h3>
354
+ <p class="text-sm text-gray-500">Create echoes</p>
355
+ </div>
356
+ </div>
357
+ </div>
358
+
359
+ <div class="effect-card bg-gray-50 rounded-lg p-4 border border-gray-200 transition cursor-pointer">
360
+ <div class="flex items-center space-x-3">
361
+ <div class="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center text-red-600">
362
+ <i class="fas fa-cut"></i>
363
+ </div>
364
+ <div>
365
+ <h3 class="font-medium">Noise Reduction</h3>
366
+ <p class="text-sm text-gray-500">Remove background noise</p>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </div>
371
+
372
+ <div class="mt-6 pt-6 border-t border-gray-200">
373
+ <h3 class="font-medium mb-3">Recording</h3>
374
+ <button id="recordButton" class="w-full py-3 rounded-md bg-red-600 hover:bg-red-700 text-white flex items-center justify-center transition">
375
+ <i class="fas fa-circle mr-2"></i> Start Recording
376
+ </button>
377
+ <div class="mt-4 text-sm text-gray-500">
378
+ <p>Input: Built-in Microphone</p>
379
+ <p>Format: WAV, 44.1kHz, 16-bit</p>
380
+ </div>
381
+ </div>
382
+ </div>
383
+ </div>
384
+ </div>
385
+
386
+ <!-- Features Section -->
387
+ <div class="bg-gray-100 py-16">
388
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
389
+ <div class="text-center mb-16">
390
+ <h2 class="text-3xl font-bold mb-4">Powerful Audio Editing Features</h2>
391
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Everything you need to create professional-quality audio productions</p>
392
+ </div>
393
+
394
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
395
+ <div class="bg-white rounded-xl shadow-md p-8 hover:shadow-lg transition">
396
+ <div class="w-14 h-14 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 mb-6">
397
+ <i class="fas fa-cut text-2xl"></i>
398
+ </div>
399
+ <h3 class="text-xl font-bold mb-3">Precision Editing</h3>
400
+ <p class="text-gray-600">Cut, trim, split, and arrange audio with sample-accurate precision. Our non-destructive editing lets you experiment freely.</p>
401
+ </div>
402
+
403
+ <div class="bg-white rounded-xl shadow-md p-8 hover:shadow-lg transition">
404
+ <div class="w-14 h-14 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 mb-6">
405
+ <i class="fas fa-sliders-h text-2xl"></i>
406
+ </div>
407
+ <h3 class="text-xl font-bold mb-3">Professional Effects</h3>
408
+ <p class="text-gray-600">Access a full suite of studio-quality effects including EQ, compression, reverb, delay, noise reduction, and more.</p>
409
+ </div>
410
+
411
+ <div class="bg-white rounded-xl shadow-md p-8 hover:shadow-lg transition">
412
+ <div class="w-14 h-14 rounded-full bg-green-100 flex items-center justify-center text-green-600 mb-6">
413
+ <i class="fas fa-layer-group text-2xl"></i>
414
+ </div>
415
+ <h3 class="text-xl font-bold mb-3">Multi-Track Mixing</h3>
416
+ <p class="text-gray-600">Mix unlimited audio tracks with volume, pan, and effects controls. Create complex arrangements with ease.</p>
417
+ </div>
418
+
419
+ <div class="bg-white rounded-xl shadow-md p-8 hover:shadow-lg transition">
420
+ <div class="w-14 h-14 rounded-full bg-purple-100 flex items-center justify-center text-purple-600 mb-6">
421
+ <i class="fas fa-cloud-upload-alt text-2xl"></i>
422
+ </div>
423
+ <h3 class="text-xl font-bold mb-3">Cloud Storage</h3>
424
+ <p class="text-gray-600">Your projects are automatically saved to the cloud. Access them from any device, anytime.</p>
425
+ </div>
426
+
427
+ <div class="bg-white rounded-xl shadow-md p-8 hover:shadow-lg transition">
428
+ <div class="w-14 h-14 rounded-full bg-yellow-100 flex items-center justify-center text-yellow-600 mb-6">
429
+ <i class="fas fa-users text-2xl"></i>
430
+ </div>
431
+ <h3 class="text-xl font-bold mb-3">Collaboration</h3>
432
+ <p class="text-gray-600">Work with team members in real-time. Share projects and leave comments for seamless collaboration.</p>
433
+ </div>
434
+
435
+ <div class="bg-white rounded-xl shadow-md p-8 hover:shadow-lg transition">
436
+ <div class="w-14 h-14 rounded-full bg-red-100 flex items-center justify-center text-red-600 mb-6">
437
+ <i class="fas fa-file-export text-2xl"></i>
438
+ </div>
439
+ <h3 class="text-xl font-bold mb-3">Export Options</h3>
440
+ <p class="text-gray-600">Export in multiple formats (MP3, WAV, FLAC, etc.) with customizable quality settings for any use case.</p>
441
+ </div>
442
+ </div>
443
+ </div>
444
+ </div>
445
+
446
+ <!-- Call to Action -->
447
+ <div class="bg-indigo-900 text-white py-20">
448
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
449
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Audio?</h2>
450
+ <p class="text-xl mb-8 max-w-3xl mx-auto text-indigo-200">Join thousands of creators who use Waveform to produce professional audio content.</p>
451
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
452
+ <button class="px-8 py-4 rounded-md bg-white text-indigo-900 font-bold hover:bg-gray-100 transition">Start Free 14-Day Trial</button>
453
+ <button class="px-8 py-4 rounded-md border border-white text-white hover:bg-white hover:bg-opacity-10 transition">Schedule a Demo</button>
454
+ </div>
455
+ </div>
456
+ </div>
457
+
458
+ <!-- Footer -->
459
+ <footer class="bg-gray-900 text-gray-400 py-12">
460
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
461
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
462
+ <div>
463
+ <h3 class="text-white text-lg font-medium mb-4">Product</h3>
464
+ <ul class="space-y-2">
465
+ <li><a href="#" class="hover:text-white transition">Features</a></li>
466
+ <li><a href="#" class="hover:text-white transition">Pricing</a></li>
467
+ <li><a href="#" class="hover:text-white transition">Integrations</a></li>
468
+ <li><a href="#" class="hover:text-white transition">Updates</a></li>
469
+ </ul>
470
+ </div>
471
+ <div>
472
+ <h3 class="text-white text-lg font-medium mb-4">Resources</h3>
473
+ <ul class="space-y-2">
474
+ <li><a href="#" class="hover:text-white transition">Documentation</a></li>
475
+ <li><a href="#" class="hover:text-white transition">Tutorials</a></li>
476
+ <li><a href="#" class="hover:text-white transition">Blog</a></li>
477
+ <li><a href="#" class="hover:text-white transition">Community</a></li>
478
+ </ul>
479
+ </div>
480
+ <div>
481
+ <h3 class="text-white text-lg font-medium mb-4">Company</h3>
482
+ <ul class="space-y-2">
483
+ <li><a href="#" class="hover:text-white transition">About</a></li>
484
+ <li><a href="#" class="hover:text-white transition">Careers</a></li>
485
+ <li><a href="#" class="hover:text-white transition">Contact</a></li>
486
+ <li><a href="#" class="hover:text-white transition">Press</a></li>
487
+ </ul>
488
+ </div>
489
+ <div>
490
+ <h3 class="text-white text-lg font-medium mb-4">Connect</h3>
491
+ <div class="flex space-x-4 mb-4">
492
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center transition">
493
+ <i class="fab fa-twitter"></i>
494
+ </a>
495
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center transition">
496
+ <i class="fab fa-facebook-f"></i>
497
+ </a>
498
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center transition">
499
+ <i class="fab fa-instagram"></i>
500
+ </a>
501
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center transition">
502
+ <i class="fab fa-youtube"></i>
503
+ </a>
504
+ </div>
505
+ <p class="text-sm">Subscribe to our newsletter</p>
506
+ <div class="mt-2 flex">
507
+ <input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-800 text-white rounded-l-md focus:outline-none focus:ring-2 focus:ring-indigo-500 w-full">
508
+ <button class="px-4 py-2 bg-indigo-600 text-white rounded-r-md hover:bg-indigo-700 transition">Go</button>
509
+ </div>
510
+ </div>
511
+ </div>
512
+ <div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
513
+ <div class="flex items-center mb-4 md:mb-0">
514
+ <i class="fas fa-wave-square text-2xl mr-2 text-indigo-400"></i>
515
+ <span class="text-xl font-bold text-white">Waveform</span>
516
+ </div>
517
+ <div class="text-sm">
518
+ <span>© 2023 Waveform Audio, Inc. All rights reserved.</span>
519
+ <a href="#" class="ml-4 hover:text-white transition">Privacy</a>
520
+ <a href="#" class="ml-4 hover:text-white transition">Terms</a>
521
+ <a href="#" class="ml-4 hover:text-white transition">Cookies</a>
522
+ </div>
523
+ </div>
524
+ </div>
525
+ </footer>
526
+
527
+ <script>
528
+ // Generate random waveform data
529
+ function generateWaveformData(count) {
530
+ const data = [];
531
+ for (let i = 0; i < count; i++) {
532
+ data.push(Math.random() * 100 + 10); // Random height between 10 and 110
533
+ }
534
+ return data;
535
+ }
536
+
537
+ // Create waveform visualization
538
+ function createWaveform(elementId, data) {
539
+ const container = document.getElementById(elementId);
540
+ container.innerHTML = '';
541
+
542
+ data.forEach(height => {
543
+ const bar = document.createElement('div');
544
+ bar.className = 'waveform-bar';
545
+ bar.style.height = `${height}%`;
546
+ container.appendChild(bar);
547
+ });
548
+ }
549
+
550
+ // Animate playhead
551
+ function animatePlayhead(elementId, duration) {
552
+ const playhead = document.getElementById(elementId);
553
+ const container = playhead.parentElement;
554
+ let start = null;
555
+
556
+ function step(timestamp) {
557
+ if (!start) start = timestamp;
558
+ const progress = (timestamp - start) / (duration * 1000);
559
+ if (progress < 1) {
560
+ playhead.style.left = `${progress * 100}%`;
561
+ window.requestAnimationFrame(step);
562
+ } else {
563
+ playhead.style.left = '0';
564
+ start = timestamp;
565
+ window.requestAnimationFrame(step);
566
+ }
567
+ }
568
+
569
+ window.requestAnimationFrame(step);
570
+ }
571
+
572
+ // Initialize waveforms
573
+ document.addEventListener('DOMContentLoaded', function() {
574
+ const demoData = generateWaveformData(120);
575
+ const mainData = generateWaveformData(200);
576
+
577
+ createWaveform('demoWaveform', demoData);
578
+ createWaveform('mainWaveform', mainData);
579
+
580
+ animatePlayhead('demoPlayhead', 3.45);
581
+ animatePlayhead('mainPlayhead', 4.12);
582
+
583
+ // Recording button functionality
584
+ const recordButton = document.getElementById('recordButton');
585
+ let isRecording = false;
586
+
587
+ recordButton.addEventListener('click', function() {
588
+ isRecording = !isRecording;
589
+ if (isRecording) {
590
+ recordButton.innerHTML = '<i class="fas fa-stop mr-2"></i> Stop Recording';
591
+ recordButton.classList.remove('bg-red-600', 'hover:bg-red-700');
592
+ recordButton.classList.add('bg-gray-700', 'hover:bg-gray-800');
593
+ recordButton.classList.add('recording-animation');
594
+ } else {
595
+ recordButton.innerHTML = '<i class="fas fa-circle mr-2"></i> Start Recording';
596
+ recordButton.classList.add('bg-red-600', 'hover:bg-red-700');
597
+ recordButton.classList.remove('bg-gray-700', 'hover:bg-gray-800');
598
+ recordButton.classList.remove('recording-animation');
599
+ }
600
+ });
601
+
602
+ // Effect cards click handler
603
+ document.querySelectorAll('.effect-card').forEach(card => {
604
+ card.addEventListener('click', function() {
605
+ // In a real app, this would open the effect panel
606
+ console.log('Effect selected:', this.querySelector('h3').textContent);
607
+ });
608
+ });
609
+ });
610
+ </script>
611
+ <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=MrEzzat/audio-edititng" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
612
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Create a SaaS application that is used for audio editing features