Benxee commited on
Commit
e6a9d08
·
verified ·
1 Parent(s): 607a5d2

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +220 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: New Music
3
- emoji: 🐢
4
- colorFrom: green
5
- colorTo: yellow
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: new-music
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: green
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,220 @@
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>Trackulture - Get Your Music Seen & Heard</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 elements that need more styling */
11
+ .hero-gradient {
12
+ background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
13
+ }
14
+ .service-card:hover {
15
+ transform: translateY(-5px);
16
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
17
+ }
18
+ .payment-form input, .payment-form textarea {
19
+ transition: all 0.3s ease;
20
+ }
21
+ .payment-form input:focus, .payment-form textarea:focus {
22
+ border-color: #9d50bb;
23
+ box-shadow: 0 0 0 3px rgba(157, 80, 187, 0.2);
24
+ }
25
+ </style>
26
+ </head>
27
+ <body class="font-sans bg-gray-50">
28
+ <!-- Navigation -->
29
+ <nav class="bg-white shadow-lg sticky top-0 z-50">
30
+ <div class="max-w-6xl mx-auto px-4">
31
+ <div class="flex justify-between items-center h-16">
32
+ <div class="flex items-center">
33
+ <a href="#" class="flex items-center">
34
+ <i class="fas fa-music text-purple-600 text-2xl mr-2"></i>
35
+ <span class="font-bold text-xl text-purple-600">Trackulture</span>
36
+ </a>
37
+ </div>
38
+ <div class="hidden md:flex items-center space-x-4">
39
+ <a href="#home" class="text-gray-700 hover:text-purple-600 px-3 py-2">Home</a>
40
+ <a href="#services" class="text-gray-700 hover:text-purple-600 px-3 py-2">Services</a>
41
+ <a href="#about" class="text-gray-700 hover:text-purple-600 px-3 py-2">About</a>
42
+ <a href="#contact" class="text-gray-700 hover:text-purple-600 px-3 py-2">Contact</a>
43
+ <a href="#book" class="bg-purple-600 text-white px-4 py-2 rounded-md hover:bg-purple-700 transition">Book Now</a>
44
+ </div>
45
+ <div class="md:hidden flex items-center">
46
+ <button class="mobile-menu-button p-2 focus:outline-none">
47
+ <i class="fas fa-bars text-gray-700 text-xl"></i>
48
+ </button>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ <!-- Mobile menu -->
53
+ <div class="mobile-menu hidden md:hidden bg-white shadow-lg">
54
+ <a href="#home" class="block px-4 py-2 text-gray-700 hover:bg-purple-50">Home</a>
55
+ <a href="#services" class="block px-4 py-2 text-gray-700 hover:bg-purple-50">Services</a>
56
+ <a href="#about" class="block px-4 py-2 text-gray-700 hover:bg-purple-50">About</a>
57
+ <a href="#contact" class="block px-4 py-2 text-gray-700 hover:bg-purple-50">Contact</a>
58
+ <a href="#book" class="block px-4 py-2 bg-purple-600 text-white">Book Now</a>
59
+ </div>
60
+ </nav>
61
+
62
+ <!-- Hero Section -->
63
+ <section id="home" class="hero-gradient text-white py-20">
64
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
65
+ <div class="md:flex items-center justify-between">
66
+ <div class="md:w-1/2 mb-10 md:mb-0">
67
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Get Your Music Seen & Heard</h1>
68
+ <p class="text-xl mb-8">Trackulture helps emerging artists grow their audience through strategic promotion on YouTube, TikTok, and Instagram.</p>
69
+ <a href="#services" class="bg-white text-purple-600 px-8 py-3 rounded-md font-semibold hover:bg-gray-100 transition inline-block">Book a Promo Now</a>
70
+ </div>
71
+ <div class="md:w-1/2 flex justify-center">
72
+ <img src="https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Music Promotion" class="rounded-lg shadow-xl w-full max-w-md">
73
+ </div>
74
+ </div>
75
+ </div>
76
+ </section>
77
+
78
+ <!-- Services Section -->
79
+ <section id="services" class="py-16 bg-white">
80
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
81
+ <div class="text-center mb-16">
82
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Our Promotion Services</h2>
83
+ <p class="text-gray-600 max-w-2xl mx-auto">Choose from our individual services or get the full bundle for maximum exposure.</p>
84
+ </div>
85
+
86
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
87
+ <!-- YouTube Service -->
88
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
89
+ <div class="p-6">
90
+ <div class="flex items-center mb-4">
91
+ <i class="fab fa-youtube text-red-600 text-3xl mr-3"></i>
92
+ <h3 class="text-xl font-semibold text-gray-800">YouTube Post</h3>
93
+ </div>
94
+ <p class="text-gray-600 mb-6">Get your full song uploaded to the Trackulture YouTube channel with professional visuals.</p>
95
+ <div class="flex items-baseline mb-6">
96
+ <span class="text-3xl font-bold text-purple-600">$49</span>
97
+ <span class="ml-1 text-gray-500">/promo</span>
98
+ </div>
99
+ <button onclick="addToCart('YouTube Post', 49)" class="w-full bg-purple-600 text-white py-2 px-4 rounded-md hover:bg-purple-700 transition">Add to Cart</button>
100
+ </div>
101
+ </div>
102
+
103
+ <!-- TikTok Service -->
104
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
105
+ <div class="p-6">
106
+ <div class="flex items-center mb-4">
107
+ <i class="fab fa-tiktok text-black text-3xl mr-3"></i>
108
+ <h3 class="text-xl font-semibold text-gray-800">TikTok Video</h3>
109
+ </div>
110
+ <p class="text-gray-600 mb-6">Your song featured in a viral TikTok challenge with engaging content to drive streams.</p>
111
+ <div class="flex items-baseline mb-6">
112
+ <span class="text-3xl font-bold text-purple-600">$39</span>
113
+ <span class="ml-1 text-gray-500">/promo</span>
114
+ </div>
115
+ <button onclick="addToCart('TikTok Video', 39)" class="w-full bg-purple-600 text-white py-2 px-4 rounded-md hover:bg-purple-700 transition">Add to Cart</button>
116
+ </div>
117
+ </div>
118
+
119
+ <!-- Instagram Service -->
120
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
121
+ <div class="p-6">
122
+ <div class="flex items-center mb-4">
123
+ <i class="fab fa-instagram text-pink-600 text-3xl mr-3"></i>
124
+ <h3 class="text-xl font-semibold text-gray-800">Instagram Post</h3>
125
+ </div>
126
+ <p class="text-gray-600 mb-6">Your song featured on the Trackulture Instagram with both a post and story for 24 hours.</p>
127
+ <div class="flex items-baseline mb-6">
128
+ <span class="text-3xl font-bold text-purple-600">$29</span>
129
+ <span class="ml-1 text-gray-500">/promo</span>
130
+ </div>
131
+ <button onclick="addToCart('Instagram Post', 29)" class="w-full bg-purple-600 text-white py-2 px-4 rounded-md hover:bg-purple-700 transition">Add to Cart</button>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Full Bundle -->
136
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 border-2 border-purple-500">
137
+ <div class="absolute top-0 right-0 bg-purple-500 text-white text-xs font-bold px-2 py-1 rounded-bl-lg">BEST VALUE</div>
138
+ <div class="p-6">
139
+ <div class="flex items-center mb-4">
140
+ <i class="fas fa-star text-yellow-400 text-3xl mr-3"></i>
141
+ <h3 class="text-xl font-semibold text-gray-800">Full Promo Bundle</h3>
142
+ </div>
143
+ <p class="text-gray-600 mb-6">All three platforms: YouTube, TikTok, and Instagram for maximum exposure at a discounted rate.</p>
144
+ <div class="flex items-baseline mb-6">
145
+ <span class="text-3xl font-bold text-purple-600">$99</span>
146
+ <span class="ml-1 text-gray-500">/promo</span>
147
+ <span class="ml-2 text-sm line-through text-gray-400">$117</span>
148
+ </div>
149
+ <button onclick="addToCart('Full Promo Bundle', 99)" class="w-full bg-purple-600 text-white py-2 px-4 rounded-md hover:bg-purple-700 transition">Add to Cart</button>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </section>
155
+
156
+ <!-- Cart Modal -->
157
+ <div id="cartModal" class="fixed inset-0 bg-black bg-opacity-50 z-50 hidden flex items-center justify-center">
158
+ <div class="bg-white rounded-lg shadow-xl w-full max-w-md max-h-[90vh] overflow-y-auto">
159
+ <div class="p-6">
160
+ <div class="flex justify-between items-center mb-4">
161
+ <h3 class="text-xl font-bold text-gray-800">Your Cart</h3>
162
+ <button onclick="closeCart()" class="text-gray-500 hover:text-gray-700">
163
+ <i class="fas fa-times"></i>
164
+ </button>
165
+ </div>
166
+
167
+ <div id="cartItems" class="mb-6">
168
+ <!-- Cart items will be added here dynamically -->
169
+ <p class="text-gray-500 text-center py-4">Your cart is empty</p>
170
+ </div>
171
+
172
+ <div class="border-t border-gray-200 pt-4 mb-6">
173
+ <div class="flex justify-between mb-2">
174
+ <span class="font-semibold">Subtotal:</span>
175
+ <span id="cartSubtotal">$0</span>
176
+ </div>
177
+ </div>
178
+
179
+ <button onclick="proceedToCheckout()" class="w-full bg-purple-600 text-white py-3 px-4 rounded-md hover:bg-purple-700 transition">Proceed to Checkout</button>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- Payment Section -->
185
+ <section id="book" class="py-16 bg-gray-50">
186
+ <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
187
+ <div class="bg-white rounded-lg shadow-xl overflow-hidden">
188
+ <div class="md:flex">
189
+ <div class="md:w-1/2 bg-purple-600 text-white p-8">
190
+ <h2 class="text-2xl font-bold mb-6">Checkout</h2>
191
+ <div id="orderSummary">
192
+ <h3 class="font-semibold mb-2">Your Order:</h3>
193
+ <div id="checkoutItems" class="mb-6">
194
+ <!-- Order items will be added here dynamically -->
195
+ <p class="text-purple-200">No items selected</p>
196
+ </div>
197
+ <div class="border-t border-purple-400 pt-4">
198
+ <div class="flex justify-between mb-2">
199
+ <span>Subtotal:</span>
200
+ <span id="checkoutSubtotal">$0</span>
201
+ </div>
202
+ <div class="flex justify-between font-bold text-lg">
203
+ <span>Total:</span>
204
+ <span id="checkoutTotal">$0</span>
205
+ </div>
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+ <div class="md:w-1/2 p-8 payment-form">
211
+ <h2 class="text-2xl font-bold text-gray-800 mb-6">Payment Information</h2>
212
+ <form id="paymentForm" onsubmit="processPayment(event)">
213
+ <div class="mb-4">
214
+ <label for="name" class="block text-gray-700 mb-2">Full Name</label>
215
+ <input type="text" id="name" class="w-full px-4 py-2 border rounded-md focus:outline-none focus:ring-1 focus:ring-purple-600" required>
216
+ </div>
217
+ <div class="mb-4">
218
+ <label for="email" class="block text-gray-700 mb-2">Email</label>
219
+ <input
220
+ </html>
prompts.txt ADDED
File without changes