Spaces:
Running
Running
File size: 16,714 Bytes
4e917b1 a9176be 384b310 a9176be 4e917b1 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - MixTAO Lab</title>
<meta name="description" content="Get in touch with MixTAO Lab. Contact our team for AI solutions, partnerships, or support.">
<link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>π€</text></svg>">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
body { font-family: 'Inter', sans-serif; }
.gradient-text {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.contact-card {
transition: all 0.3s ease;
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.form-input:focus {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
</style>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<!-- Hero Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-br from-purple-600 to-indigo-600">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Get in Touch</h1>
<p class="text-xl text-purple-100 max-w-3xl mx-auto">Ready to transform your business with AI? Our team is here to help you every step of the way</p>
</div>
</section>
<!-- Contact Form & Info -->
<section class="py-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid lg:grid-cols-2 gap-12">
<!-- Contact Form -->
<div class="bg-white p-8 rounded-2xl shadow-lg">
<h2 class="text-3xl font-bold mb-6 gradient-text">Send us a Message</h2>
<form id="contactForm" class="space-y-6">
<div class="grid md:grid-cols-2 gap-6">
<div>
<label class="block text-gray-700 font-semibold mb-2">First Name</label>
<input type="text" name="firstName" class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none transition-all" required>
</div>
<div>
<label class="block text-gray-700 font-semibold mb-2">Last Name</label>
<input type="text" name="lastName" class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none transition-all" required>
</div>
</div>
<div>
<label class="block text-gray-700 font-semibold mb-2">Email Address</label>
<input type="email" name="email" class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none transition-all" required>
</div>
<div>
<label class="block text-gray-700 font-semibold mb-2">Company</label>
<input type="text" name="company" class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none transition-all">
</div>
<div>
<label class="block text-gray-700 font-semibold mb-2">Service Interested In</label>
<select name="service" class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none transition-all">
<option value="">Select a service</option>
<option value="vision">Computer Vision</option>
<option value="nlp">Natural Language Processing</option>
<option value="analytics">Predictive Analytics</option>
<option value="automation">Automation</option>
<option value="custom">Custom Solution</option>
</select>
</div>
<div>
<label class="block text-gray-700 font-semibold mb-2">Message</label>
<textarea name="message" rows="4" class="form-input w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none transition-all" required></textarea>
</div>
<button type="submit" class="w-full py-4 bg-gradient-to-r from-purple-600 to-indigo-600 text-white font-semibold rounded-lg hover:from-purple-700 hover:to-indigo-700 transform hover:scale-105 transition-all duration-300 shadow-lg">
Send Message
</button>
</form>
<div id="formMessage" class="mt-4 hidden"></div>
</div>
<!-- Contact Info -->
<div class="space-y-8">
<div>
<h2 class="text-3xl font-bold mb-6 gradient-text">Contact Information</h2>
<div class="space-y-4">
<div class="contact-card bg-white p-6 rounded-xl shadow-md flex items-start">
<div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mr-4 flex-shrink-0">
<i data-feather="map-pin" class="text-purple-600 w-6 h-6"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800 mb-1">Headquarters</h3>
<p class="text-gray-600">123 AI Innovation Blvd<br>San Francisco, CA 94105<br>United States</p>
</div>
</div>
<div class="contact-card bg-white p-6 rounded-xl shadow-md flex items-start">
<div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center mr-4 flex-shrink-0">
<i data-feather="phone" class="text-indigo-600 w-6 h-6"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800 mb-1">Phone</h3>
<p class="text-gray-600">+1 (555) 123-4567<br>Mon-Fri 9AM-6PM PST</p>
</div>
</div>
<div class="contact-card bg-white p-6 rounded-xl shadow-md flex items-start">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mr-4 flex-shrink-0">
<i data-feather="mail" class="text-blue-600 w-6 h-6"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800 mb-1">Email</h3>
<p class="text-gray-600">info@aiinnovatehub.com<br>support@aiinnovatehub.com</p>
</div>
</div>
</div>
</div>
<!-- Office Locations -->
<div>
<h3 class="text-2xl font-bold mb-4">Global Offices</h3>
<div class="grid md:grid-cols-2 gap-4">
<div class="bg-white p-4 rounded-lg shadow-md">
<h4 class="font-semibold text-gray-800 mb-1">New York</h4>
<p class="text-gray-600 text-sm">Times Square, Manhattan</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-md">
<h4 class="font-semibold text-gray-800 mb-1">London</h4>
<p class="text-gray-600 text-sm">Canary Wharf, London</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-md">
<h4 class="font-semibold text-gray-800 mb-1">Tokyo</h4>
<p class="text-gray-600 text-sm">Shibuya, Tokyo</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-md">
<h4 class="font-semibold text-gray-800 mb-1">Singapore</h4>
<p class="text-gray-600 text-sm">Marina Bay, Singapore</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Map Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-100">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-4xl font-bold mb-4 gradient-text">Visit Us</h2>
<p class="text-xl text-gray-600">Our headquarters in the heart of innovation</p>
</div>
<div class="bg-white rounded-2xl shadow-lg overflow-hidden" style="height: 500px;">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3153.019284855314!2d-122.39862328468277!3d37.79415197975832!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8085807c5c6f7e9f%3A0x3c5b2c4a6a4a4a4a!2sSalesforce%20Tower!5e0!3m2!1sen!2sus!4v1234567890"
width="100%"
height="100%"
style="border:0;"
allowfullscreen=""
loading="lazy">
</iframe>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-4xl font-bold mb-4 gradient-text">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600">Quick answers to common questions</p>
</div>
<div class="space-y-4">
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<button class="w-full px-6 py-4 text-left font-semibold text-gray-800 hover:bg-gray-50 focus:outline-none focus:bg-gray-50 transition-colors flex justify-between items-center" onclick="toggleFAQ(this)">
<span>What industries do you serve?</span>
<i data-feather="chevron-down" class="w-5 h-5 transform transition-transform"></i>
</button>
<div class="hidden px-6 py-4 text-gray-600 border-t">
We serve a wide range of industries including healthcare, finance, retail, manufacturing, technology, and more. Our AI solutions are customizable to meet specific industry needs.
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<button class="w-full px-6 py-4 text-left font-semibold text-gray-800 hover:bg-gray-50 focus:outline-none focus:bg-gray-50 transition-colors flex justify-between items-center" onclick="toggleFAQ(this)">
<span>How long does implementation take?</span>
<i data-feather="chevron-down" class="w-5 h-5 transform transition-transform"></i>
</button>
<div class="hidden px-6 py-4 text-gray-600 border-t">
Implementation timelines vary based on the complexity of the solution. Simple integrations can take 2-4 weeks, while custom enterprise solutions may take 2-3 months.
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<button class="w-full px-6 py-4 text-left font-semibold text-gray-800 hover:bg-gray-50 focus:outline-none focus:bg-gray-50 transition-colors flex justify-between items-center" onclick="toggleFAQ(this)">
<span>Do you offer technical support?</span>
<i data-feather="chevron-down" class="w-5 h-5 transform transition-transform"></i>
</button>
<div class="hidden px-6 py-4 text-gray-600 border-t">
Yes, we offer 24/7 technical support for all enterprise clients. Support includes email, phone, and live chat options with dedicated account managers.
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<button class="w-full px-6 py-4 text-left font-semibold text-gray-800 hover:bg-gray-50 focus:outline-none focus:bg-gray-50 transition-colors flex justify-between items-center" onclick="toggleFAQ(this)">
<span>Is my data secure?</span>
<i data-feather="chevron-down" class="w-5 h-5 transform transition-transform"></i>
</button>
<div class="hidden px-6 py-4 text-gray-600 border-t">
Absolutely. We use enterprise-grade security measures including end-to-end encryption, regular security audits, and compliance with GDPR, CCPA, and other data protection regulations.
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-r from-purple-600 to-indigo-600">
<div class="max-w-4xl mx-auto text-center px-4 sm:px-6 lg:px-8">
<h2 class="text-4xl font-bold text-white mb-6">Ready to Get Started?</h2>
<p class="text-xl text-purple-100 mb-8">Schedule a free consultation with our AI experts today</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button onclick="window.location.href='#contactForm'" class="px-8 py-4 bg-white text-purple-600 font-semibold rounded-full hover:bg-gray-100 transform hover:scale-105 transition-all duration-300 shadow-lg">
Schedule Demo
</button>
<a href="tel:+15551234567" class="px-8 py-4 border-2 border-white text-white font-semibold rounded-full hover:bg-white hover:text-purple-600 transform hover:scale-105 transition-all duration-300">
Call Us Now
</a>
</div>
</div>
</section>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
function toggleFAQ(button) {
const content = button.nextElementSibling;
const icon = button.querySelector('svg');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
}
// Contact form handling
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
const formData = new FormData(this);
const data = Object.fromEntries(formData);
// Show success message
const messageDiv = document.getElementById('formMessage');
messageDiv.className = 'mt-4 p-4 bg-green-100 text-green-700 rounded-lg';
messageDiv.textContent = 'Thank you for your message! We will get back to you within 24 hours.';
messageDiv.classList.remove('hidden');
// Reset form
this.reset();
// Hide message after 5 seconds
setTimeout(() => {
messageDiv.classList.add('hidden');
}, 5000);
});
</script>
<script>feather.replace();</script>
</body>
</html> |