xereon commited on
Commit
f53015f
·
verified ·
1 Parent(s): 9f69eab

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +369 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: My Awesome Website
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: my-awesome-website
3
+ emoji: 🐳
4
  colorFrom: gray
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,369 @@
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>ConciseWebDesign - Professional Web Development, Mobile Apps & Desktop Software</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, #3b82f6 0%, #8b5cf6 100%);
12
+ }
13
+ .service-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .feature-icon {
18
+ width: 60px;
19
+ height: 60px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ border-radius: 50%;
24
+ margin-bottom: 1rem;
25
+ }
26
+ .animate-float {
27
+ animation: float 6s ease-in-out infinite;
28
+ }
29
+ @keyframes float {
30
+ 0% { transform: translateY(0px); }
31
+ 50% { transform: translateY(-20px); }
32
+ 100% { transform: translateY(0px); }
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="font-sans antialiased text-gray-800">
37
+ <!-- Navigation -->
38
+ <nav class="bg-white shadow-md sticky top-0 z-50">
39
+ <div class="container mx-auto px-6 py-3">
40
+ <div class="flex items-center justify-between">
41
+ <div class="flex items-center">
42
+ <img src="https://concise.design/assets/concise_logo_high_contrast-D8KczOqz.png" alt="ConciseWebDesign Logo" class="h-12">
43
+ <span class="ml-3 text-xl font-semibold text-gray-800">ConciseWebDesign</span>
44
+ </div>
45
+ <div class="hidden md:flex space-x-8">
46
+ <a href="#services" class="text-gray-600 hover:text-blue-600 transition">Services</a>
47
+ <a href="#why-us" class="text-gray-600 hover:text-blue-600 transition">Why Us</a>
48
+ <a href="#contact" class="text-gray-600 hover:text-blue-600 transition">Contact</a>
49
+ </div>
50
+ <button class="md:hidden focus:outline-none" id="menu-toggle">
51
+ <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
52
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
53
+ </svg>
54
+ </button>
55
+ </div>
56
+ <div class="md:hidden hidden mt-2" id="mobile-menu">
57
+ <a href="#services" class="block py-2 text-gray-600 hover:text-blue-600 transition">Services</a>
58
+ <a href="#why-us" class="block py-2 text-gray-600 hover:text-blue-600 transition">Why Us</a>
59
+ <a href="#contact" class="block py-2 text-gray-600 hover:text-blue-600 transition">Contact</a>
60
+ </div>
61
+ </div>
62
+ </nav>
63
+
64
+ <!-- Hero Section -->
65
+ <section class="gradient-bg text-white py-20">
66
+ <div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
67
+ <div class="md:w-1/2 mb-10 md:mb-0">
68
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Crafting Digital Excellence</h1>
69
+ <h2 class="text-2xl md:text-3xl font-semibold mb-6">Across Every Platform</h2>
70
+ <p class="text-lg mb-8">From responsive websites to mobile apps and desktop software - we build digital solutions that drive your business forward.</p>
71
+ <a href="#contact" class="bg-white text-blue-600 font-bold py-3 px-8 rounded-full hover:bg-gray-100 transition duration-300 inline-block">Get Started</a>
72
+ </div>
73
+ <div class="md:w-1/2 flex justify-center">
74
+ <img src="https://concise.design/assets/concise_logo_high_contrast-D8KczOqz.png" alt="Digital Solutions" class="w-64 h-64 animate-float">
75
+ </div>
76
+ </div>
77
+ </section>
78
+
79
+ <!-- Services Section -->
80
+ <section id="services" class="py-20 bg-gray-50">
81
+ <div class="container mx-auto px-6">
82
+ <div class="text-center mb-16">
83
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Complete Digital Solutions</h2>
84
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">We deliver end-to-end development services across all platforms, ensuring your digital presence is powerful, scalable, and future-ready.</p>
85
+ </div>
86
+
87
+ <div class="grid md:grid-cols-3 gap-10">
88
+ <!-- Web Development -->
89
+ <div class="bg-white rounded-xl p-8 shadow-lg service-card transition duration-300">
90
+ <div class="feature-icon bg-blue-100 text-blue-600 mx-auto">
91
+ <i class="fas fa-globe text-2xl"></i>
92
+ </div>
93
+ <h3 class="text-xl font-bold text-center mb-4">Web Development</h3>
94
+ <ul class="space-y-3">
95
+ <li class="flex items-start">
96
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
97
+ <span>Responsive Design</span>
98
+ </li>
99
+ <li class="flex items-start">
100
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
101
+ <span>E-commerce Solutions</span>
102
+ </li>
103
+ <li class="flex items-start">
104
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
105
+ <span>Progressive Web Apps</span>
106
+ </li>
107
+ <li class="flex items-start">
108
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
109
+ <span>SEO Optimized</span>
110
+ </li>
111
+ </ul>
112
+ </div>
113
+
114
+ <!-- Mobile Apps -->
115
+ <div class="bg-white rounded-xl p-8 shadow-lg service-card transition duration-300">
116
+ <div class="feature-icon bg-purple-100 text-purple-600 mx-auto">
117
+ <i class="fas fa-mobile-alt text-2xl"></i>
118
+ </div>
119
+ <h3 class="text-xl font-bold text-center mb-4">Mobile Apps</h3>
120
+ <ul class="space-y-3">
121
+ <li class="flex items-start">
122
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
123
+ <span>iOS App Store</span>
124
+ </li>
125
+ <li class="flex items-start">
126
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
127
+ <span>Google Play Store</span>
128
+ </li>
129
+ <li class="flex items-start">
130
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
131
+ <span>Cross-Platform</span>
132
+ </li>
133
+ <li class="flex items-start">
134
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
135
+ <span>Native Performance</span>
136
+ </li>
137
+ </ul>
138
+ </div>
139
+
140
+ <!-- Desktop Software -->
141
+ <div class="bg-white rounded-xl p-8 shadow-lg service-card transition duration-300">
142
+ <div class="feature-icon bg-indigo-100 text-indigo-600 mx-auto">
143
+ <i class="fas fa-desktop text-2xl"></i>
144
+ </div>
145
+ <h3 class="text-xl font-bold text-center mb-4">Desktop Software</h3>
146
+ <ul class="space-y-3">
147
+ <li class="flex items-start">
148
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
149
+ <span>Windows Applications</span>
150
+ </li>
151
+ <li class="flex items-start">
152
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
153
+ <span>macOS Applications</span>
154
+ </li>
155
+ <li class="flex items-start">
156
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
157
+ <span>Cross-Platform</span>
158
+ </li>
159
+ <li class="flex items-start">
160
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
161
+ <span>Enterprise Solutions</span>
162
+ </li>
163
+ </ul>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </section>
168
+
169
+ <!-- Why Choose Us Section -->
170
+ <section id="why-us" class="py-20 bg-white">
171
+ <div class="container mx-auto px-6">
172
+ <div class="text-center mb-16">
173
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Why Global Businesses Trust ConciseWebDesign</h2>
174
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Based on Australia's Central Coast, serving clients worldwide with cutting-edge technology and proven expertise.</p>
175
+ </div>
176
+
177
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
178
+ <div class="text-center p-6 rounded-lg hover:bg-gray-50 transition duration-300">
179
+ <div class="feature-icon bg-blue-100 text-blue-600 mx-auto">
180
+ <i class="fas fa-globe-americas text-2xl"></i>
181
+ </div>
182
+ <h3 class="text-xl font-bold mb-3">Global Reach, Local Touch</h3>
183
+ <p class="text-gray-600">Operating worldwide with headquarters on Australia's Central Coast</p>
184
+ </div>
185
+
186
+ <div class="text-center p-6 rounded-lg hover:bg-gray-50 transition duration-300">
187
+ <div class="feature-icon bg-purple-100 text-purple-600 mx-auto">
188
+ <i class="fas fa-layer-group text-2xl"></i>
189
+ </div>
190
+ <h3 class="text-xl font-bold mb-3">Full-Stack Expertise</h3>
191
+ <p class="text-gray-600">End-to-end development across all platforms and technologies</p>
192
+ </div>
193
+
194
+ <div class="text-center p-6 rounded-lg hover:bg-gray-50 transition duration-300">
195
+ <div class="feature-icon bg-indigo-100 text-indigo-600 mx-auto">
196
+ <i class="fas fa-microchip text-2xl"></i>
197
+ </div>
198
+ <h3 class="text-xl font-bold mb-3">Modern Technology</h3>
199
+ <p class="text-gray-600">Cutting-edge tools and frameworks for optimal performance</p>
200
+ </div>
201
+
202
+ <div class="text-center p-6 rounded-lg hover:bg-gray-50 transition duration-300">
203
+ <div class="feature-icon bg-green-100 text-green-600 mx-auto">
204
+ <i class="fas fa-chart-line text-2xl"></i>
205
+ </div>
206
+ <h3 class="text-xl font-bold mb-3">Proven Results</h3>
207
+ <p class="text-gray-600">Successful projects across industries with measurable outcomes</p>
208
+ </div>
209
+ </div>
210
+ </div>
211
+ </section>
212
+
213
+ <!-- Contact Section -->
214
+ <section id="contact" class="gradient-bg text-white py-20">
215
+ <div class="container mx-auto px-6">
216
+ <div class="text-center mb-16">
217
+ <h2 class="text-3xl font-bold mb-4">Ready to Start Your Project?</h2>
218
+ <p class="text-xl max-w-3xl mx-auto">Get in touch with our team to discuss your digital needs. We're here to help bring your vision to life.</p>
219
+ </div>
220
+
221
+ <div class="grid md:grid-cols-2 gap-10">
222
+ <div>
223
+ <h3 class="text-2xl font-bold mb-6">Get in Touch</h3>
224
+
225
+ <div class="space-y-6">
226
+ <div class="flex items-start">
227
+ <div class="bg-white bg-opacity-20 rounded-full p-3 mr-4">
228
+ <i class="fas fa-phone text-xl"></i>
229
+ </div>
230
+ <div>
231
+ <h4 class="font-bold mb-1">Phone</h4>
232
+ <p>+61 433 531 381</p>
233
+ </div>
234
+ </div>
235
+
236
+ <div class="flex items-start">
237
+ <div class="bg-white bg-opacity-20 rounded-full p-3 mr-4">
238
+ <i class="fas fa-envelope text-xl"></i>
239
+ </div>
240
+ <div>
241
+ <h4 class="font-bold mb-1">Email</h4>
242
243
244
+ </div>
245
+ </div>
246
+
247
+ <div class="flex items-start">
248
+ <div class="bg-white bg-opacity-20 rounded-full p-3 mr-4">
249
+ <i class="fas fa-map-marker-alt text-xl"></i>
250
+ </div>
251
+ <div>
252
+ <h4 class="font-bold mb-1">Location</h4>
253
+ <p>Central Coast NSW, Australia</p>
254
+ <p class="mt-1 italic">Global Operations</p>
255
+ </div>
256
+ </div>
257
+
258
+ <div class="flex items-start">
259
+ <div class="bg-white bg-opacity-20 rounded-full p-3 mr-4">
260
+ <i class="fas fa-clock text-xl"></i>
261
+ </div>
262
+ <div>
263
+ <h4 class="font-bold mb-1">Business Hours</h4>
264
+ <p>Monday - Friday: 9 AM - 6 PM AEST</p>
265
+ <p>Response Time: Within 24 hours</p>
266
+ <p>Emergency Support: Available for existing clients</p>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-xl p-8">
273
+ <h3 class="text-2xl font-bold mb-6">Send Us a Message</h3>
274
+ <form id="contactForm">
275
+ <div class="mb-4">
276
+ <label for="name" class="block mb-2 font-medium">Name</label>
277
+ <input type="text" id="name" class="w-full px-4 py-2 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 text-white placeholder-white placeholder-opacity-70" placeholder="Your name">
278
+ </div>
279
+ <div class="mb-4">
280
+ <label for="email" class="block mb-2 font-medium">Email</label>
281
+ <input type="email" id="email" class="w-full px-4 py-2 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 text-white placeholder-white placeholder-opacity-70" placeholder="Your email">
282
+ </div>
283
+ <div class="mb-4">
284
+ <label for="message" class="block mb-2 font-medium">Message</label>
285
+ <textarea id="message" rows="4" class="w-full px-4 py-2 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 text-white placeholder-white placeholder-opacity-70" placeholder="Your message"></textarea>
286
+ </div>
287
+ <button type="submit" class="bg-white text-blue-600 font-bold py-3 px-6 rounded-lg hover:bg-gray-100 transition duration-300 w-full">Send Message</button>
288
+ </form>
289
+ </div>
290
+ </div>
291
+ </div>
292
+ </section>
293
+
294
+ <!-- Footer -->
295
+ <footer class="bg-gray-900 text-white py-12">
296
+ <div class="container mx-auto px-6">
297
+ <div class="flex flex-col md:flex-row justify-between items-center">
298
+ <div class="mb-6 md:mb-0">
299
+ <div class="flex items-center">
300
+ <img src="https://concise.design/assets/concise_logo_high_contrast-D8KczOqz.png" alt="ConciseWebDesign Logo" class="h-10">
301
+ <span class="ml-3 text-xl font-semibold">ConciseWebDesign</span>
302
+ </div>
303
+ <p class="mt-2 text-gray-400">Professional Web Development, Mobile Apps & Desktop Software</p>
304
+ </div>
305
+
306
+ <div class="flex space-x-6">
307
+ <a href="#" class="text-gray-400 hover:text-white transition">
308
+ <i class="fab fa-facebook-f text-xl"></i>
309
+ </a>
310
+ <a href="#" class="text-gray-400 hover:text-white transition">
311
+ <i class="fab fa-twitter text-xl"></i>
312
+ </a>
313
+ <a href="#" class="text-gray-400 hover:text-white transition">
314
+ <i class="fab fa-linkedin-in text-xl"></i>
315
+ </a>
316
+ <a href="#" class="text-gray-400 hover:text-white transition">
317
+ <i class="fab fa-github text-xl"></i>
318
+ </a>
319
+ </div>
320
+ </div>
321
+
322
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
323
+ <p>&copy; 2025 ConciseWebDesign. All rights reserved.</p>
324
+ </div>
325
+ </div>
326
+ </footer>
327
+
328
+ <script>
329
+ // Mobile menu toggle
330
+ document.getElementById('menu-toggle').addEventListener('click', function() {
331
+ const menu = document.getElementById('mobile-menu');
332
+ menu.classList.toggle('hidden');
333
+ });
334
+
335
+ // Form submission
336
+ document.getElementById('contactForm').addEventListener('submit', function(e) {
337
+ e.preventDefault();
338
+ const name = document.getElementById('name').value;
339
+ const email = document.getElementById('email').value;
340
+ const message = document.getElementById('message').value;
341
+
342
+ // Here you would typically send the form data to a server
343
+ console.log('Form submitted:', { name, email, message });
344
+
345
+ // Show a success message
346
+ alert('Thank you for your message! We will get back to you soon.');
347
+
348
+ // Reset the form
349
+ this.reset();
350
+ });
351
+
352
+ // Smooth scrolling for anchor links
353
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
354
+ anchor.addEventListener('click', function (e) {
355
+ e.preventDefault();
356
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
357
+ behavior: 'smooth'
358
+ });
359
+
360
+ // Close mobile menu if open
361
+ const mobileMenu = document.getElementById('mobile-menu');
362
+ if (!mobileMenu.classList.contains('hidden')) {
363
+ mobileMenu.classList.add('hidden');
364
+ }
365
+ });
366
+ });
367
+ </script>
368
+ <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=xereon/my-awesome-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
369
+ </html>