Araptoo commited on
Commit
1d3ec54
·
verified ·
1 Parent(s): da0683e

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +497 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Araptoo
3
- emoji: 📉
4
- colorFrom: gray
5
- colorTo: blue
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: araptoo
3
+ emoji: 🐳
4
+ colorFrom: pink
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,497 @@
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>DigitalStore - Sell Your Digital Products</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, #6e8efb, #a777e3);
12
+ }
13
+ .product-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .feature-icon {
18
+ width: 60px;
19
+ height: 60px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ border-radius: 12px;
24
+ margin-bottom: 20px;
25
+ }
26
+ .testimonial-card {
27
+ transition: all 0.3s ease;
28
+ }
29
+ .testimonial-card:hover {
30
+ transform: scale(1.03);
31
+ }
32
+ .nav-link {
33
+ position: relative;
34
+ }
35
+ .nav-link:after {
36
+ content: '';
37
+ position: absolute;
38
+ width: 0;
39
+ height: 2px;
40
+ bottom: -2px;
41
+ left: 0;
42
+ background-color: #6e8efb;
43
+ transition: width 0.3s ease;
44
+ }
45
+ .nav-link:hover:after {
46
+ width: 100%;
47
+ }
48
+ .dropdown:hover .dropdown-menu {
49
+ display: block;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body class="font-sans antialiased text-gray-800">
54
+ <!-- Header/Navigation -->
55
+ <header class="bg-white shadow-sm sticky top-0 z-50">
56
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
57
+ <div class="flex items-center">
58
+ <a href="#" class="text-2xl font-bold text-indigo-600 flex items-center">
59
+ <i class="fas fa-store mr-2"></i>
60
+ DigitalStore
61
+ </a>
62
+ </div>
63
+
64
+ <nav class="hidden md:flex space-x-8">
65
+ <a href="#" class="nav-link">Home</a>
66
+ <div class="dropdown relative">
67
+ <button class="nav-link flex items-center">
68
+ Products <i class="fas fa-chevron-down ml-1 text-xs"></i>
69
+ </button>
70
+ <div class="dropdown-menu absolute hidden bg-white shadow-lg rounded-md mt-2 py-2 w-48">
71
+ <a href="#" class="block px-4 py-2 hover:bg-gray-100">All Products</a>
72
+ <a href="#" class="block px-4 py-2 hover:bg-gray-100">Categories</a>
73
+ <a href="#" class="block px-4 py-2 hover:bg-gray-100">New Releases</a>
74
+ </div>
75
+ </div>
76
+ <a href="#" class="nav-link">Pricing</a>
77
+ <a href="#" class="nav-link">Features</a>
78
+ <a href="#" class="nav-link">Support</a>
79
+ </nav>
80
+
81
+ <div class="flex items-center space-x-4">
82
+ <a href="#" class="hidden md:block px-4 py-2 rounded-md hover:bg-gray-100">
83
+ <i class="fas fa-search"></i>
84
+ </a>
85
+ <a href="#" class="hidden md:block px-4 py-2 rounded-md hover:bg-gray-100">
86
+ <i class="fas fa-shopping-cart"></i>
87
+ </a>
88
+ <a href="#" class="px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700 transition">
89
+ Create Account
90
+ </a>
91
+ <button class="md:hidden text-gray-600">
92
+ <i class="fas fa-bars text-xl"></i>
93
+ </button>
94
+ </div>
95
+ </div>
96
+ </header>
97
+
98
+ <!-- Hero Section -->
99
+ <section class="gradient-bg text-white py-20">
100
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
101
+ <div class="md:w-1/2 mb-10 md:mb-0">
102
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Sell Your Digital Products With Ease</h1>
103
+ <p class="text-xl mb-8 opacity-90">The simplest way to sell ebooks, courses, software and other digital products online. No technical skills required.</p>
104
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
105
+ <a href="#" class="bg-white text-indigo-600 px-8 py-4 rounded-md font-semibold text-center hover:bg-gray-100 transition">
106
+ Start Selling Now
107
+ </a>
108
+ <a href="#" class="border-2 border-white px-8 py-4 rounded-md font-semibold text-center hover:bg-white hover:text-indigo-600 transition">
109
+ Watch Demo
110
+ </a>
111
+ </div>
112
+ </div>
113
+ <div class="md:w-1/2 flex justify-center">
114
+ <div class="relative">
115
+ <div class="w-full h-full bg-white bg-opacity-20 rounded-2xl absolute -bottom-3 -right-3"></div>
116
+ <img src="https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Dashboard" class="relative rounded-2xl shadow-2xl">
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </section>
121
+
122
+ <!-- Trusted By Section -->
123
+ <section class="bg-gray-50 py-12">
124
+ <div class="container mx-auto px-4">
125
+ <p class="text-center text-gray-500 mb-8">Trusted by thousands of creators worldwide</p>
126
+ <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
127
+ <img src="https://via.placeholder.com/120x40?text=Company+1" alt="Company 1" class="h-8 opacity-60 hover:opacity-100 transition">
128
+ <img src="https://via.placeholder.com/120x40?text=Company+2" alt="Company 2" class="h-8 opacity-60 hover:opacity-100 transition">
129
+ <img src="https://via.placeholder.com/120x40?text=Company+3" alt="Company 3" class="h-8 opacity-60 hover:opacity-100 transition">
130
+ <img src="https://via.placeholder.com/120x40?text=Company+4" alt="Company 4" class="h-8 opacity-60 hover:opacity-100 transition">
131
+ <img src="https://via.placeholder.com/120x40?text=Company+5" alt="Company 5" class="h-8 opacity-60 hover:opacity-100 transition">
132
+ </div>
133
+ </div>
134
+ </section>
135
+
136
+ <!-- Features Section -->
137
+ <section class="py-20">
138
+ <div class="container mx-auto px-4">
139
+ <div class="text-center mb-16">
140
+ <h2 class="text-3xl font-bold mb-4">Everything You Need To Sell Online</h2>
141
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Our platform provides all the tools you need to start, run and grow your digital product business.</p>
142
+ </div>
143
+
144
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
145
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
146
+ <div class="feature-icon bg-indigo-100 text-indigo-600">
147
+ <i class="fas fa-globe text-2xl"></i>
148
+ </div>
149
+ <h3 class="text-xl font-semibold mb-3">Beautiful Storefront</h3>
150
+ <p class="text-gray-600">Create a professional storefront that showcases your products beautifully and converts visitors to customers.</p>
151
+ </div>
152
+
153
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
154
+ <div class="feature-icon bg-purple-100 text-purple-600">
155
+ <i class="fas fa-lock text-2xl"></i>
156
+ </div>
157
+ <h3 class="text-xl font-semibold mb-3">Secure Delivery</h3>
158
+ <p class="text-gray-600">Automatically deliver your digital products securely after payment with download links and license keys.</p>
159
+ </div>
160
+
161
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
162
+ <div class="feature-icon bg-blue-100 text-blue-600">
163
+ <i class="fas fa-chart-line text-2xl"></i>
164
+ </div>
165
+ <h3 class="text-xl font-semibold mb-3">Powerful Analytics</h3>
166
+ <p class="text-gray-600">Get detailed insights about your sales, customers and products to help you make data-driven decisions.</p>
167
+ </div>
168
+
169
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
170
+ <div class="feature-icon bg-green-100 text-green-600">
171
+ <i class="fas fa-money-bill-wave text-2xl"></i>
172
+ </div>
173
+ <h3 class="text-xl font-semibold mb-3">Multiple Payment Options</h3>
174
+ <p class="text-gray-600">Accept payments via credit cards, PayPal, bank transfers and mobile money from customers worldwide.</p>
175
+ </div>
176
+
177
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
178
+ <div class="feature-icon bg-yellow-100 text-yellow-600">
179
+ <i class="fas fa-tags text-2xl"></i>
180
+ </div>
181
+ <h3 class="text-xl font-semibold mb-3">Discounts & Coupons</h3>
182
+ <p class="text-gray-600">Create special offers, discounts and coupon codes to boost your sales and attract more customers.</p>
183
+ </div>
184
+
185
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
186
+ <div class="feature-icon bg-red-100 text-red-600">
187
+ <i class="fas fa-headset text-2xl"></i>
188
+ </div>
189
+ <h3 class="text-xl font-semibold mb-3">24/7 Support</h3>
190
+ <p class="text-gray-600">Our support team is available round the clock to help you with any issues or questions you might have.</p>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ </section>
195
+
196
+ <!-- How It Works Section -->
197
+ <section class="py-20 bg-gray-50">
198
+ <div class="container mx-auto px-4">
199
+ <div class="text-center mb-16">
200
+ <h2 class="text-3xl font-bold mb-4">How It Works</h2>
201
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Get started in just a few minutes and start selling your digital products right away.</p>
202
+ </div>
203
+
204
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
205
+ <div class="text-center">
206
+ <div class="bg-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6 shadow-md">
207
+ <span class="text-2xl font-bold text-indigo-600">1</span>
208
+ </div>
209
+ <h3 class="text-xl font-semibold mb-3">Create Your Account</h3>
210
+ <p class="text-gray-600">Sign up for free in less than a minute. No credit card required.</p>
211
+ </div>
212
+
213
+ <div class="text-center">
214
+ <div class="bg-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6 shadow-md">
215
+ <span class="text-2xl font-bold text-indigo-600">2</span>
216
+ </div>
217
+ <h3 class="text-xl font-semibold mb-3">Add Your Products</h3>
218
+ <p class="text-gray-600">Upload your digital files, set prices and customize your store.</p>
219
+ </div>
220
+
221
+ <div class="text-center">
222
+ <div class="bg-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6 shadow-md">
223
+ <span class="text-2xl font-bold text-indigo-600">3</span>
224
+ </div>
225
+ <h3 class="text-xl font-semibold mb-3">Start Selling</h3>
226
+ <p class="text-gray-600">Share your store link and start making sales immediately.</p>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </section>
231
+
232
+ <!-- Popular Products Section -->
233
+ <section class="py-20">
234
+ <div class="container mx-auto px-4">
235
+ <div class="flex justify-between items-center mb-10">
236
+ <h2 class="text-3xl font-bold">Popular Products</h2>
237
+ <a href="#" class="text-indigo-600 font-semibold hover:underline">View All Products</a>
238
+ </div>
239
+
240
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
241
+ <!-- Product 1 -->
242
+ <div class="bg-white rounded-xl overflow-hidden shadow-sm product-card transition duration-300">
243
+ <div class="relative">
244
+ <img src="https://images.unsplash.com/photo-1544716278-ca5e3f4abd8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Product" class="w-full h-48 object-cover">
245
+ <div class="absolute top-3 right-3 bg-yellow-100 text-yellow-800 text-xs font-semibold px-2 py-1 rounded">
246
+ Bestseller
247
+ </div>
248
+ </div>
249
+ <div class="p-4">
250
+ <h3 class="font-semibold text-lg mb-1">Digital Marketing Masterclass</h3>
251
+ <p class="text-gray-600 text-sm mb-3">Learn digital marketing strategies from industry experts</p>
252
+ <div class="flex justify-between items-center">
253
+ <span class="font-bold text-indigo-600">$49.99</span>
254
+ <div class="flex items-center text-yellow-400">
255
+ <i class="fas fa-star"></i>
256
+ <span class="text-gray-600 text-sm ml-1">4.9 (128)</span>
257
+ </div>
258
+ </div>
259
+ </div>
260
+ </div>
261
+
262
+ <!-- Product 2 -->
263
+ <div class="bg-white rounded-xl overflow-hidden shadow-sm product-card transition duration-300">
264
+ <div class="relative">
265
+ <img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80" alt="Product" class="w-full h-48 object-cover">
266
+ </div>
267
+ <div class="p-4">
268
+ <h3 class="font-semibold text-lg mb-1">SEO Optimization Guide</h3>
269
+ <p class="text-gray-600 text-sm mb-3">The complete guide to ranking your website in 2023</p>
270
+ <div class="flex justify-between items-center">
271
+ <span class="font-bold text-indigo-600">$29.99</span>
272
+ <div class="flex items-center text-yellow-400">
273
+ <i class="fas fa-star"></i>
274
+ <span class="text-gray-600 text-sm ml-1">4.7 (89)</span>
275
+ </div>
276
+ </div>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Product 3 -->
281
+ <div class="bg-white rounded-xl overflow-hidden shadow-sm product-card transition duration-300">
282
+ <div class="relative">
283
+ <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Product" class="w-full h-48 object-cover">
284
+ <div class="absolute top-3 right-3 bg-green-100 text-green-800 text-xs font-semibold px-2 py-1 rounded">
285
+ New
286
+ </div>
287
+ </div>
288
+ <div class="p-4">
289
+ <h3 class="font-semibold text-lg mb-1">Python Programming Course</h3>
290
+ <p class="text-gray-600 text-sm mb-3">From beginner to advanced Python programming</p>
291
+ <div class="flex justify-between items-center">
292
+ <span class="font-bold text-indigo-600">$59.99</span>
293
+ <div class="flex items-center text-yellow-400">
294
+ <i class="fas fa-star"></i>
295
+ <span class="text-gray-600 text-sm ml-1">4.8 (156)</span>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+
301
+ <!-- Product 4 -->
302
+ <div class="bg-white rounded-xl overflow-hidden shadow-sm product-card transition duration-300">
303
+ <div class="relative">
304
+ <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Product" class="w-full h-48 object-cover">
305
+ </div>
306
+ <div class="p-4">
307
+ <h3 class="font-semibold text-lg mb-1">UI/UX Design Handbook</h3>
308
+ <p class="text-gray-600 text-sm mb-3">Master the principles of modern UI/UX design</p>
309
+ <div class="flex justify-between items-center">
310
+ <span class="font-bold text-indigo-600">$39.99</span>
311
+ <div class="flex items-center text-yellow-400">
312
+ <i class="fas fa-star"></i>
313
+ <span class="text-gray-600 text-sm ml-1">4.6 (72)</span>
314
+ </div>
315
+ </div>
316
+ </div>
317
+ </div>
318
+ </div>
319
+ </div>
320
+ </section>
321
+
322
+ <!-- Testimonials Section -->
323
+ <section class="py-20 bg-gray-50">
324
+ <div class="container mx-auto px-4">
325
+ <div class="text-center mb-16">
326
+ <h2 class="text-3xl font-bold mb-4">What Our Sellers Say</h2>
327
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Thousands of creators are using DigitalStore to sell their digital products online.</p>
328
+ </div>
329
+
330
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
331
+ <div class="bg-white p-8 rounded-xl shadow-sm testimonial-card">
332
+ <div class="flex items-center mb-4">
333
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-12 h-12 rounded-full object-cover">
334
+ <div class="ml-4">
335
+ <h4 class="font-semibold">Sarah Johnson</h4>
336
+ <p class="text-gray-600 text-sm">Ebook Author</p>
337
+ </div>
338
+ </div>
339
+ <p class="text-gray-700">"DigitalStore has completely transformed my business. I went from selling a few copies of my ebook to making consistent sales every day. The platform is so easy to use!"</p>
340
+ <div class="flex mt-4 text-yellow-400">
341
+ <i class="fas fa-star"></i>
342
+ <i class="fas fa-star"></i>
343
+ <i class="fas fa-star"></i>
344
+ <i class="fas fa-star"></i>
345
+ <i class="fas fa-star"></i>
346
+ </div>
347
+ </div>
348
+
349
+ <div class="bg-white p-8 rounded-xl shadow-sm testimonial-card">
350
+ <div class="flex items-center mb-4">
351
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-12 h-12 rounded-full object-cover">
352
+ <div class="ml-4">
353
+ <h4 class="font-semibold">Michael Chen</h4>
354
+ <p class="text-gray-600 text-sm">Course Creator</p>
355
+ </div>
356
+ </div>
357
+ <p class="text-gray-700">"As a course creator, I needed a platform that could handle video delivery securely. DigitalStore exceeded my expectations with its seamless delivery system and excellent analytics."</p>
358
+ <div class="flex mt-4 text-yellow-400">
359
+ <i class="fas fa-star"></i>
360
+ <i class="fas fa-star"></i>
361
+ <i class="fas fa-star"></i>
362
+ <i class="fas fa-star"></i>
363
+ <i class="fas fa-star"></i>
364
+ </div>
365
+ </div>
366
+
367
+ <div class="bg-white p-8 rounded-xl shadow-sm testimonial-card">
368
+ <div class="flex items-center mb-4">
369
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="User" class="w-12 h-12 rounded-full object-cover">
370
+ <div class="ml-4">
371
+ <h4 class="font-semibold">Jessica Williams</h4>
372
+ <p class="text-gray-600 text-sm">Graphic Designer</p>
373
+ </div>
374
+ </div>
375
+ <p class="text-gray-700">"Selling my design templates was so complicated before I found DigitalStore. Now I can focus on creating while the platform handles all the technical aspects of selling online."</p>
376
+ <div class="flex mt-4 text-yellow-400">
377
+ <i class="fas fa-star"></i>
378
+ <i class="fas fa-star"></i>
379
+ <i class="fas fa-star"></i>
380
+ <i class="fas fa-star"></i>
381
+ <i class="fas fa-star-half-alt"></i>
382
+ </div>
383
+ </div>
384
+ </div>
385
+ </div>
386
+ </section>
387
+
388
+ <!-- CTA Section -->
389
+ <section class="py-20 gradient-bg text-white">
390
+ <div class="container mx-auto px-4 text-center">
391
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Selling Online?</h2>
392
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of creators who are already selling their digital products with DigitalStore.</p>
393
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
394
+ <a href="#" class="bg-white text-indigo-600 px-8 py-4 rounded-md font-semibold hover:bg-gray-100 transition">
395
+ Get Started - It's Free
396
+ </a>
397
+ <a href="#" class="border-2 border-white px-8 py-4 rounded-md font-semibold hover:bg-white hover:text-indigo-600 transition">
398
+ See Pricing Plans
399
+ </a>
400
+ </div>
401
+ </div>
402
+ </section>
403
+
404
+ <!-- Footer -->
405
+ <footer class="bg-gray-900 text-white pt-16 pb-8">
406
+ <div class="container mx-auto px-4">
407
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
408
+ <div>
409
+ <h3 class="text-xl font-bold mb-4 flex items-center">
410
+ <i class="fas fa-store mr-2"></i> DigitalStore
411
+ </h3>
412
+ <p class="text-gray-400 mb-4">The easiest way to sell your digital products online.</p>
413
+ <div class="flex space-x-4">
414
+ <a href="#" class="text-gray-400 hover:text-white transition">
415
+ <i class="fab fa-facebook-f"></i>
416
+ </a>
417
+ <a href="#" class="text-gray-400 hover:text-white transition">
418
+ <i class="fab fa-twitter"></i>
419
+ </a>
420
+ <a href="#" class="text-gray-400 hover:text-white transition">
421
+ <i class="fab fa-instagram"></i>
422
+ </a>
423
+ <a href="#" class="text-gray-400 hover:text-white transition">
424
+ <i class="fab fa-linkedin-in"></i>
425
+ </a>
426
+ </div>
427
+ </div>
428
+
429
+ <div>
430
+ <h4 class="font-semibold text-lg mb-4">Product</h4>
431
+ <ul class="space-y-2">
432
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
433
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
434
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Examples</a></li>
435
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Updates</a></li>
436
+ </ul>
437
+ </div>
438
+
439
+ <div>
440
+ <h4 class="font-semibold text-lg mb-4">Company</h4>
441
+ <ul class="space-y-2">
442
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
443
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
444
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
445
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
446
+ </ul>
447
+ </div>
448
+
449
+ <div>
450
+ <h4 class="font-semibold text-lg mb-4">Support</h4>
451
+ <ul class="space-y-2">
452
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
453
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
454
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
455
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
456
+ </ul>
457
+ </div>
458
+ </div>
459
+
460
+ <div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
461
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 DigitalStore. All rights reserved.</p>
462
+ <div class="flex space-x-6">
463
+ <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
464
+ <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
465
+ <a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
466
+ </div>
467
+ </div>
468
+ </div>
469
+ </footer>
470
+
471
+ <script>
472
+ // Mobile menu toggle
473
+ document.querySelector('button.md\\:hidden').addEventListener('click', function() {
474
+ // This would toggle a mobile menu in a real implementation
475
+ alert('Mobile menu would open here in a real implementation');
476
+ });
477
+
478
+ // Product card hover effect
479
+ const productCards = document.querySelectorAll('.product-card');
480
+ productCards.forEach(card => {
481
+ card.addEventListener('mouseenter', function() {
482
+ this.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease';
483
+ });
484
+ });
485
+
486
+ // Smooth scrolling for anchor links
487
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
488
+ anchor.addEventListener('click', function (e) {
489
+ e.preventDefault();
490
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
491
+ behavior: 'smooth'
492
+ });
493
+ });
494
+ });
495
+ </script>
496
+ <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=Araptoo/araptoo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
497
+ </html>
prompts.txt ADDED
File without changes