MagnusM76 commited on
Commit
d3afacd
·
verified ·
1 Parent(s): f2ec569

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +242 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Advert
3
- emoji:
4
- colorFrom: green
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: advert
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: purple
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,242 @@
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>Maintenance Services Advertisement</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 flash {
11
+ 0%, 50%, 100% { opacity: 1; }
12
+ 25%, 75% { opacity: 0.5; }
13
+ }
14
+
15
+ @keyframes pulse {
16
+ 0% { transform: scale(1); }
17
+ 50% { transform: scale(1.05); }
18
+ 100% { transform: scale(1); }
19
+ }
20
+
21
+ .flashing {
22
+ animation: flash 2s infinite;
23
+ }
24
+
25
+ .pulse {
26
+ animation: pulse 2s infinite;
27
+ }
28
+
29
+ .gradient-bg {
30
+ background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #f59e0b 100%);
31
+ }
32
+
33
+ .service-card:hover {
34
+ transform: translateY(-5px);
35
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="bg-gray-100 font-sans">
40
+ <div class="container mx-auto px-4 py-8">
41
+ <!-- Header with flashing effect -->
42
+ <div class="gradient-bg rounded-xl p-6 mb-8 text-center flashing">
43
+ <h1 class="text-4xl md:text-5xl font-bold text-white mb-4">🚧 DISTINCT SOLUTIONS & TECHNICAL SERVICES 🚧</h1>
44
+ <p class="text-xl text-white mb-4">24/7 Emergency Repairs • Preventive Maintenance • Expert Technicians</p>
45
+ <div class="flex justify-center">
46
+ <button id="ctaButton" class="bg-white text-blue-600 font-bold py-3 px-8 rounded-full text-lg pulse hover:bg-gray-100 transition duration-300">
47
+ CALL NOW: (+971) 58 559 1476
48
+ </button>
49
+ </div>
50
+ </div>
51
+
52
+ <!-- Services Grid -->
53
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-12">
54
+ <!-- Service Card 1 -->
55
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
56
+ <div class="bg-blue-100 p-4 text-center">
57
+ <i class="fas fa-tools text-blue-600 text-4xl mb-3"></i>
58
+ <h3 class="text-xl font-bold text-gray-800">HVAC Maintenance</h3>
59
+ </div>
60
+ <div class="p-4">
61
+ <p class="text-gray-600 mb-4">Regular tune-ups to keep your cooling systems running efficiently.</p>
62
+ </div>
63
+ </div>
64
+
65
+ <!-- Service Card 2 -->
66
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
67
+ <div class="bg-green-100 p-4 text-center">
68
+ <i class="fas fa-plug text-green-600 text-4xl mb-3"></i>
69
+ <h3 class="text-xl font-bold text-gray-800">Electrical Repairs</h3>
70
+ </div>
71
+ <div class="p-4">
72
+ <p class="text-gray-600 mb-4">Safe and reliable solutions for all your electrical needs.</p>
73
+ </div>
74
+ </div>
75
+
76
+ <!-- Service Card 3 -->
77
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
78
+ <div class="bg-yellow-100 p-4 text-center">
79
+ <i class="fas fa-faucet text-yellow-600 text-4xl mb-3"></i>
80
+ <h3 class="text-xl font-bold text-gray-800">Plumbing Services</h3>
81
+ </div>
82
+ <div class="p-4">
83
+ <p class="text-gray-600 mb-4">From leaky faucets to complete pipe replacements.</p>
84
+ </div>
85
+ </div>
86
+
87
+ <!-- Service Card 4 -->
88
+ <div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
89
+ <div class="bg-purple-100 p-4 text-center">
90
+ <i class="fas fa-home text-purple-600 text-4xl mb-3"></i>
91
+ <h3 class="text-xl font-bold text-gray-800">General Maintenance</h3>
92
+ </div>
93
+ <div class="p-4">
94
+ <p class="text-gray-600 mb-4">Complete property maintenance packages for homes and businesses.</p>
95
+ </div>
96
+ </div>
97
+ </div>
98
+
99
+ <!-- Testimonials -->
100
+ <div class="bg-white rounded-xl shadow-md p-6 mb-8">
101
+ <h2 class="text-2xl font-bold text-center mb-6 text-gray-800">What Our Customers Say</h2>
102
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
103
+ <div class="bg-gray-50 p-4 rounded-lg">
104
+ <div class="flex items-center mb-3">
105
+ <div class="text-yellow-400">
106
+ <i class="fas fa-star"></i>
107
+ <i class="fas fa-star"></i>
108
+ <i class="fas fa-star"></i>
109
+ <i class="fas fa-star"></i>
110
+ <i class="fas fa-star"></i>
111
+ </div>
112
+ </div>
113
+ <p class="text-gray-600 mb-3">"Magnus is very skilled and meticulous handyman. He is the only handyman in Dubai I have truly had confidence in. There's no suprises in his pricing or his completion of projects. Highly recommend to all my friends."</p>
114
+ <p class="font-semibold text-gray-800">- Renee.S.</p>
115
+ </div>
116
+ <div class="bg-gray-50 p-4 rounded-lg">
117
+ <div class="flex items-center mb-3">
118
+ <div class="text-yellow-400">
119
+ <i class="fas fa-star"></i>
120
+ <i class="fas fa-star"></i>
121
+ <i class="fas fa-star"></i>
122
+ <i class="fas fa-star"></i>
123
+ <i class="fas fa-star"></i>
124
+ </div>
125
+ </div>
126
+ <p class="text-gray-600 mb-3">"It was such a pleasure working with Magnus and his team. They delivered Excetional service and have intricate knowledge in various fields. We cannot recommend them highly enough."</p>
127
+ <p class="font-semibold text-gray-800">- Marnus. T</p>
128
+ </div>
129
+ <div class="bg-gray-50 p-4 rounded-lg">
130
+ <div class="flex items-center mb-3">
131
+ <div class="text-yellow-400">
132
+ <i class="fas fa-star"></i>
133
+ <i class="fas fa-star"></i>
134
+ <i class="fas fa-star"></i>
135
+ <i class="fas fa-star"></i>
136
+ <i class="fas fa-star-half-alt"></i>
137
+ </div>
138
+ </div>
139
+ <p class="text-gray-600 mb-3">"Pure dedication and commitment to his passion! Magnus came in determined more than ever to fix our jacuzzi. It had been tinkered on 1 to many times by other people claiming to know what they were doing. Magnus went above and beyond and we truly greatful for the sweat and commitment in the DXB heat!"</p>
140
+ <p class="font-semibold text-gray-800">- Blanche. M</p>
141
+ </div>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Special Offer Banner -->
146
+ <div id="specialOffer" class="bg-red-600 text-white rounded-xl p-6 mb-8 text-center flashing">
147
+ <h2 class="text-2xl md:text-3xl font-bold mb-3">🔥 LIMITED TIME OFFER! 🔥</h2>
148
+ <p class="text-xl mb-4">15% OFF YOUR FIRST SERVICE WHEN YOU CALL TODAY!</p>
149
+ <button class="bg-white text-red-600 font-bold py-2 px-6 rounded-full hover:bg-gray-100 transition duration-300">
150
+ CLAIM YOUR DISCOUNT
151
+ </button>
152
+ </div>
153
+
154
+ <!-- Contact Form -->
155
+ <div class="bg-white rounded-xl shadow-md p-6">
156
+ <h2 class="text-2xl font-bold text-center mb-6 text-gray-800">Request a Service Call</h2>
157
+ <form class="max-w-lg mx-auto">
158
+ <div class="mb-4">
159
+ <label class="block text-gray-700 mb-2" for="name">Name</label>
160
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" type="text" id="name" placeholder="Your Name">
161
+ </div>
162
+ <div class="mb-4">
163
+ <label class="block text-gray-700 mb-2" for="phone">Phone</label>
164
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" type="tel" id="phone" placeholder="(+971) 52 123 4567">
165
+ </div>
166
+ <div class="mb-4">
167
+ <label class="block text-gray-700 mb-2" for="service">Service Needed</label>
168
+ <select class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" id="service">
169
+ <option>Select a service</option>
170
+ <option>HVAC Maintenance</option>
171
+ <option>Electrical Repairs</option>
172
+ <option>Plumbing Services</option>
173
+ <option>General Maintenance</option>
174
+ <option>Shade Nets</option>
175
+ <option>Emergency Service</option>
176
+ <option>Inspection</option>
177
+ <option>AMC</option>
178
+ </select>
179
+ </div>
180
+ <div class="mb-4">
181
+ <label class="block text-gray-700 mb-2" for="message">Message</label>
182
+ <textarea class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" id="message" rows="3" placeholder="Describe your maintenance needs"></textarea>
183
+ </div>
184
+ <button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-md transition duration-300">
185
+ REQUEST SERVICE NOW
186
+ </button>
187
+ </form>
188
+ </div>
189
+
190
+ <!-- Footer -->
191
+ <footer class="mt-12 text-center text-gray-600">
192
+ <div class="flex justify-center space-x-6 mb-4">
193
+ <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-facebook-f"></i></a>
194
+ <a href="#" class="text-blue-400 hover:text-blue-600"><i class="fab fa-twitter"></i></a>
195
+ <a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-instagram"></i></a>
196
+ <a href="#" class="text-gray-900 hover:text-gray-700"><i class="fab fa-linkedin-in"></i></a>
197
+ </div>
198
+ <p>© 2024 Distinct Solutions and Technical Services. All rights reserved.</p>
199
+ <p class="mt-2">Serving the community with quality repairs since 2024</p>
200
+ </footer>
201
+ </div>
202
+
203
+ <script>
204
+ // Make the CTA button flash in a different pattern
205
+ const ctaButton = document.getElementById('ctaButton');
206
+ const specialOffer = document.getElementById('specialOffer');
207
+
208
+ setInterval(() => {
209
+ ctaButton.classList.toggle('bg-white');
210
+ ctaButton.classList.toggle('bg-yellow-300');
211
+ }, 1000);
212
+
213
+ // Change special offer color periodically
214
+ const colors = ['bg-red-600', 'bg-blue-600', 'bg-green-600', 'bg-purple-600'];
215
+ let currentColorIndex = 0;
216
+
217
+ setInterval(() => {
218
+ // Remove all color classes
219
+ colors.forEach(color => specialOffer.classList.remove(color));
220
+
221
+ // Add the next color
222
+ currentColorIndex = (currentColorIndex + 1) % colors.length;
223
+ specialOffer.classList.add(colors[currentColorIndex]);
224
+ }, 3000);
225
+
226
+ // Add click effects
227
+ document.querySelectorAll('button').forEach(button => {
228
+ button.addEventListener('click', function() {
229
+ this.classList.add('transform', 'scale-95');
230
+ setTimeout(() => {
231
+ this.classList.remove('transform', 'scale-95');
232
+ }, 300);
233
+
234
+ // For demo purposes - show an alert
235
+ if(this.textContent.includes('CALL NOW') || this.textContent.includes('CLAIM')) {
236
+ alert('Thank you for your interest! Our team will contact you shortly.');
237
+ }
238
+ });
239
+ });
240
+ </script>
241
+ <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://deepsite.hf.co/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://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=MagnusM76/advert" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
242
+ </html>
prompts.txt ADDED
File without changes