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