Matthewmasturbation commited on
Commit
992a2b9
·
verified ·
1 Parent(s): 45747da

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +257 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Adut Video Editor
3
- emoji: 🐨
4
- colorFrom: pink
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: adut-video-editor
3
+ emoji: 🐳
4
+ colorFrom: red
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,257 @@
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>ProAm Films - Professional Editing for Amateur Creators</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
12
+ }
13
+ .video-card:hover .play-icon {
14
+ opacity: 1;
15
+ transform: scale(1.1);
16
+ }
17
+ .upload-dropzone {
18
+ border: 2px dashed rgba(255,255,255,0.3);
19
+ transition: all 0.3s ease;
20
+ }
21
+ .upload-dropzone:hover {
22
+ border-color: rgba(255,255,255,0.6);
23
+ background: rgba(255,255,255,0.05);
24
+ }
25
+ .editor-card:hover {
26
+ transform: translateY(-5px);
27
+ box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="bg-gray-900 text-white font-sans">
32
+ <!-- Header -->
33
+ <header class="gradient-bg sticky top-0 z-50">
34
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
35
+ <div class="flex items-center space-x-2">
36
+ <i class="fas fa-video text-2xl"></i>
37
+ <h1 class="text-2xl font-bold">ProAm Films</h1>
38
+ </div>
39
+ <nav class="hidden md:flex space-x-6">
40
+ <a href="#features" class="hover:text-purple-200 transition">Features</a>
41
+ <a href="#how-it-works" class="hover:text-purple-200 transition">How It Works</a>
42
+ <a href="#editors" class="hover:text-purple-200 transition">Our Editors</a>
43
+ <a href="#pricing" class="hover:text-purple-200 transition">Pricing</a>
44
+ </nav>
45
+ <div class="flex items-center space-x-4">
46
+ <button class="px-4 py-2 rounded-full bg-white text-purple-800 font-semibold hover:bg-purple-100 transition">Sign In</button>
47
+ <button class="md:hidden text-2xl" id="mobile-menu-button">
48
+ <i class="fas fa-bars"></i>
49
+ </button>
50
+ </div>
51
+ </div>
52
+
53
+ <!-- Mobile Menu -->
54
+ <div class="md:hidden hidden bg-purple-900 py-4" id="mobile-menu">
55
+ <div class="container mx-auto px-4 flex flex-col space-y-3">
56
+ <a href="#features" class="block py-2 hover:bg-purple-800 px-4 rounded">Features</a>
57
+ <a href="#how-it-works" class="block py-2 hover:bg-purple-800 px-4 rounded">How It Works</a>
58
+ <a href="#editors" class="block py-2 hover:bg-purple-800 px-4 rounded">Our Editors</a>
59
+ <a href="#pricing" class="block py-2 hover:bg-purple-800 px-4 rounded">Pricing</a>
60
+ </div>
61
+ </div>
62
+ </header>
63
+
64
+ <!-- Hero Section -->
65
+ <section class="gradient-bg py-20">
66
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
67
+ <div class="md:w-1/2 mb-10 md:mb-0">
68
+ <h2 class="text-4xl md:text-5xl font-bold mb-6">Amateur Footage. Professional Results.</h2>
69
+ <p class="text-xl mb-8 text-purple-100">Upload your raw adult content and get back cinema-quality videos with professional editing, color grading, and effects.</p>
70
+ <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
71
+ <button class="px-8 py-3 bg-white text-purple-800 font-bold rounded-full hover:bg-purple-100 transition flex items-center justify-center">
72
+ <i class="fas fa-cloud-upload-alt mr-2"></i> Upload Now
73
+ </button>
74
+ <button class="px-8 py-3 bg-transparent border-2 border-white font-bold rounded-full hover:bg-white hover:text-purple-800 transition flex items-center justify-center">
75
+ <i class="fas fa-play-circle mr-2"></i> See Examples
76
+ </button>
77
+ </div>
78
+ </div>
79
+ <div class="md:w-1/2 relative">
80
+ <div class="relative overflow-hidden rounded-xl shadow-2xl">
81
+ <div class="aspect-w-16 aspect-h-9 bg-black">
82
+ <img src="https://images.unsplash.com/photo-1551269901-5c5e14c25df7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Before and after editing" class="w-full h-full object-cover">
83
+ </div>
84
+ <div class="absolute inset-0 flex items-center justify-center play-icon opacity-0 transition">
85
+ <div class="w-16 h-16 bg-white bg-opacity-80 rounded-full flex items-center justify-center">
86
+ <i class="fas fa-play text-purple-800 text-2xl"></i>
87
+ </div>
88
+ </div>
89
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
90
+ <div class="flex justify-between items-center">
91
+ <span class="text-sm font-semibold">Before & After Editing</span>
92
+ <span class="text-xs bg-purple-600 px-2 py-1 rounded">18+</span>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ </section>
99
+
100
+ <!-- Features Section -->
101
+ <section id="features" class="py-20 bg-gray-800">
102
+ <div class="container mx-auto px-4">
103
+ <h2 class="text-3xl font-bold text-center mb-16">Transform Your Content</h2>
104
+
105
+ <div class="grid md:grid-cols-3 gap-10">
106
+ <!-- Feature 1 -->
107
+ <div class="bg-gray-700 p-8 rounded-xl hover:bg-gray-600 transition">
108
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mb-6">
109
+ <i class="fas fa-cut text-2xl"></i>
110
+ </div>
111
+ <h3 class="text-xl font-bold mb-3">Professional Editing</h3>
112
+ <p class="text-gray-300">Our editors will cut, sequence, and pace your footage to create engaging, professional-quality videos that keep viewers watching.</p>
113
+ </div>
114
+
115
+ <!-- Feature 2 -->
116
+ <div class="bg-gray-700 p-8 rounded-xl hover:bg-gray-600 transition">
117
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mb-6">
118
+ <i class="fas fa-palette text-2xl"></i>
119
+ </div>
120
+ <h3 class="text-xl font-bold mb-3">Color Correction</h3>
121
+ <p class="text-gray-300">We'll enhance your footage with professional color grading to ensure perfect skin tones and cinematic looks.</p>
122
+ </div>
123
+
124
+ <!-- Feature 3 -->
125
+ <div class="bg-gray-700 p-8 rounded-xl hover:bg-gray-600 transition">
126
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mb-6">
127
+ <i class="fas fa-magic text-2xl"></i>
128
+ </div>
129
+ <h3 class="text-xl font-bold mb-3">Special Effects</h3>
130
+ <p class="text-gray-300">Add professional transitions, text overlays, slow motion, and other effects to make your content stand out.</p>
131
+ </div>
132
+
133
+ <!-- Feature 4 -->
134
+ <div class="bg-gray-700 p-8 rounded-xl hover:bg-gray-600 transition">
135
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mb-6">
136
+ <i class="fas fa-volume-up text-2xl"></i>
137
+ </div>
138
+ <h3 class="text-xl font-bold mb-3">Audio Enhancement</h3>
139
+ <p class="text-gray-300">We'll clean up background noise, balance audio levels, and add music or sound effects where appropriate.</p>
140
+ </div>
141
+
142
+ <!-- Feature 5 -->
143
+ <div class="bg-gray-700 p-8 rounded-xl hover:bg-gray-600 transition">
144
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mb-6">
145
+ <i class="fas fa-user-shield text-2xl"></i>
146
+ </div>
147
+ <h3 class="text-xl font-bold mb-3">Privacy Protection</h3>
148
+ <p class="text-gray-300">Your content is secure with us. We offer watermarking, face blurring, and strict confidentiality agreements.</p>
149
+ </div>
150
+
151
+ <!-- Feature 6 -->
152
+ <div class="bg-gray-700 p-8 rounded-xl hover:bg-gray-600 transition">
153
+ <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mb-6">
154
+ <i class="fas fa-rocket text-2xl"></i>
155
+ </div>
156
+ <h3 class="text-xl font-bold mb-3">Fast Turnaround</h3>
157
+ <p class="text-gray-300">Get your professionally edited videos back in as little as 24 hours with our express service option.</p>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </section>
162
+
163
+ <!-- How It Works Section -->
164
+ <section id="how-it-works" class="py-20 bg-gray-900">
165
+ <div class="container mx-auto px-4">
166
+ <h2 class="text-3xl font-bold text-center mb-16">How It Works</h2>
167
+
168
+ <div class="flex flex-col md:flex-row items-center mb-16">
169
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
170
+ <h3 class="text-2xl font-bold mb-4">1. Upload Your Footage</h3>
171
+ <p class="text-gray-300 mb-6">Simply drag and drop your raw video files to our secure platform. We accept all common video formats from smartphones, DSLRs, or camcorders.</p>
172
+ <ul class="space-y-3">
173
+ <li class="flex items-start">
174
+ <i class="fas fa-check-circle text-purple-500 mt-1 mr-3"></i>
175
+ <span>No file size limits</span>
176
+ </li>
177
+ <li class="flex items-start">
178
+ <i class="fas fa-check-circle text-purple-500 mt-1 mr-3"></i>
179
+ <span>Secure encrypted transfers</span>
180
+ </li>
181
+ <li class="flex items-start">
182
+ <i class="fas fa-check-circle text-purple-500 mt-1 mr-3"></i>
183
+ <span>Private cloud storage</span>
184
+ </li>
185
+ </ul>
186
+ </div>
187
+ <div class="md:w-1/2">
188
+ <div class="upload-dropzone rounded-xl p-10 text-center cursor-pointer">
189
+ <i class="fas fa-cloud-upload-alt text-5xl mb-4 text-purple-400"></i>
190
+ <h4 class="text-xl font-semibold mb-2">Drag & Drop Files Here</h4>
191
+ <p class="text-gray-400 mb-4">or click to browse your files</p>
192
+ <div class="bg-gray-800 rounded-lg p-3 text-sm">
193
+ <p class="text-gray-400">Accepted formats: MP4, MOV, AVI, MKV up to 4K resolution</p>
194
+ </div>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <div class="flex flex-col md:flex-row items-center mb-16">
200
+ <div class="md:w-1/2 order-2 md:order-1 mt-10 md:mt-0">
201
+ <div class="bg-gray-800 p-6 rounded-xl">
202
+ <div class="flex items-center mb-4">
203
+ <div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center mr-4">
204
+ <span class="font-bold">1</span>
205
+ </div>
206
+ <h4 class="font-semibold">Basic Cut</h4>
207
+ </div>
208
+ <div class="flex items-center mb-4">
209
+ <div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center mr-4">
210
+ <span class="font-bold">2</span>
211
+ </div>
212
+ <h4 class="font-semibold">Color Correction</h4>
213
+ </div>
214
+ <div class="flex items-center mb-4">
215
+ <div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center mr-4">
216
+ <span class="font-bold">3</span>
217
+ </div>
218
+ <h4 class="font-semibold">Audio Enhancement</h4>
219
+ </div>
220
+ <div class="flex items-center">
221
+ <div class="w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center mr-4">
222
+ <span class="font-bold">4</span>
223
+ </div>
224
+ <h4 class="font-semibold">Export & Delivery</h4>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ <div class="md:w-1/2 order-1 md:order-2 md:pl-10">
229
+ <h3 class="text-2xl font-bold mb-4">2. We Work Our Magic</h3>
230
+ <p class="text-gray-300 mb-6">Our professional editors will transform your raw footage into polished, engaging content. You can specify exactly what you want or let our experts decide.</p>
231
+ <div class="flex items-center space-x-4">
232
+ <button class="px-6 py-2 bg-purple-600 rounded-full hover:bg-purple-700 transition">
233
+ <i class="fas fa-comment-alt mr-2"></i> Add Instructions
234
+ </button>
235
+ <button class="px-6 py-2 border border-purple-600 rounded-full hover:bg-purple-900 transition">
236
+ <i class="fas fa-random mr-2"></i> Surprise Me
237
+ </button>
238
+ </div>
239
+ </div>
240
+ </div>
241
+
242
+ <div class="flex flex-col md:flex-row items-center">
243
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
244
+ <h3 class="text-2xl font-bold mb-4">3. Download & Share</h3>
245
+ <p class="text-gray-300 mb-6">Receive your professionally edited video in multiple formats optimized for different platforms. Share directly to your favorite sites or download for personal use.</p>
246
+ <div class="grid grid-cols-3 gap-4">
247
+ <div class="bg-gray-800 p-3 rounded-lg flex flex-col items-center">
248
+ <i class="fab fa-youtube text-3xl text-red-500 mb-2"></i>
249
+ <span class="text-sm">YouTube</span>
250
+ </div>
251
+ <div class="bg-gray-800 p-3 rounded-lg flex flex-col items-center">
252
+ <i class="fab fa-vimeo-v text-3xl text-blue-400 mb-2"></i>
253
+ <span class="text-sm">Vimeo</span>
254
+ </div>
255
+ <div class="bg-gray-800 p
256
+ <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=Matthewmasturbation/adut-video-editor" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
257
+ </html>