Spaces:
Running
Running
build me an interactive website for my Applied AI consulting company: dbAI: Authentic Intelligence - Initial Deployment
aae2c18 verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>dbAI - Authentic Intelligence | Applied AI Consulting</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> | |
| @keyframes float { | |
| 0%, 100% { transform: translateY(0); } | |
| 50% { transform: translateY(-20px); } | |
| } | |
| .floating { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(45deg, #3b82f6, #10b981, #6366f1); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .glow:hover { | |
| text-shadow: 0 0 10px rgba(59, 130, 246, 0.7); | |
| transition: text-shadow 0.3s ease; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 font-sans antialiased"> | |
| <!-- Header/Navigation --> | |
| <header class="fixed w-full bg-white shadow-sm z-50"> | |
| <div class="container mx-auto px-6 py-4 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <div class="text-3xl font-bold mr-2"> | |
| <span class="gradient-text">dbAI</span> | |
| </div> | |
| <span class="text-gray-600 font-medium hidden md:block">Authentic Intelligence</span> | |
| </div> | |
| <nav class="hidden md:block"> | |
| <ul class="flex space-x-8"> | |
| <li><a href="#home" class="text-gray-700 hover:text-blue-600 transition">Home</a></li> | |
| <li><a href="#services" class="text-gray-700 hover:text-blue-600 transition">Services</a></li> | |
| <li><a href="#approach" class="text-gray-700 hover:text-blue-600 transition">Approach</a></li> | |
| <li><a href="#cases" class="text-gray-700 hover:text-blue-600 transition">Case Studies</a></li> | |
| <li><a href="#contact" class="text-gray-700 hover:text-blue-600 transition">Contact</a></li> | |
| </ul> | |
| </nav> | |
| <button class="md:hidden focus:outline-none" id="mobile-menu-button"> | |
| <i class="fas fa-bars text-gray-600 text-2xl"></i> | |
| </button> | |
| </div> | |
| <!-- Mobile Menu --> | |
| <div class="md:hidden hidden bg-white w-full py-2" id="mobile-menu"> | |
| <ul class="flex flex-col space-y-3 px-6"> | |
| <li><a href="#home" class="block py-2 text-gray-700 hover:text-blue-600">Home</a></li> | |
| <li><a href="#services" class="block py-2 text-gray-700 hover:text-blue-600">Services</a></li> | |
| <li><a href="#approach" class="block py-2 text-gray-700 hover:text-blue-600">Approach</a></li> | |
| <li><a href="#cases" class="block py-2 text-gray-700 hover:text-blue-600">Case Studies</a></li> | |
| <li><a href="#contact" class="block py-2 text-gray-700 hover:text-blue-600">Contact</a></li> | |
| </ul> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section id="home" class="pt-32 pb-20 bg-gradient-to-br from-blue-50 to-indigo-50"> | |
| <div class="container mx-auto px-6 flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-12 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-gray-800 leading-tight mb-6"> | |
| Transforming Businesses with <span class="gradient-text">Authentic Intelligence</span> | |
| </h1> | |
| <p class="text-lg text-gray-600 mb-8"> | |
| dbAI delivers cutting-edge applied AI solutions tailored to your unique business challenges. | |
| We bridge the gap between artificial intelligence theory and real-world implementation. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition transform hover:-translate-y-1"> | |
| Get Started | |
| </a> | |
| <a href="#approach" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition"> | |
| Learn More | |
| </a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center"> | |
| <div class="relative w-80 h-80 md:w-96 md:h-96"> | |
| <div class="absolute inset-0 bg-blue-500 rounded-full opacity-20 filter blur-2xl floating" style="animation-delay: 0s;"></div> | |
| <div class="absolute inset-0 bg-indigo-500 rounded-full opacity-20 filter blur-2xl floating" style="animation-delay: 1s;"></div> | |
| <div class="absolute inset-0 bg-green-400 rounded-full opacity-20 filter blur-2xl floating" style="animation-delay: 2s;"></div> | |
| <img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" | |
| alt="AI Brain" | |
| class="absolute rounded-2xl w-full h-full object-cover shadow-2xl floating" | |
| style="animation-delay: 0.5s;"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Trusted By Section --> | |
| <section class="py-12 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p> | |
| <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16"> | |
| <img src="https://via.placeholder.com/150x50/3b82f6/ffffff?text=TECH+" alt="TechCorp" class="h-8 opacity-80 hover:opacity-100 transition"> | |
| <img src="https://via.placeholder.com/150x50/10b981/ffffff?text=INNOVATE" alt="Innovate Inc" class="h-8 opacity-80 hover:opacity-100 transition"> | |
| <img src="https://via.placeholder.com/150x50/6366f1/ffffff?text=GLOBAL" alt="Global Solutions" class="h-8 opacity-80 hover:opacity-100 transition"> | |
| <img src="https://via.placeholder.com/150x50/8b5cf6/ffffff?text=FUTURE+" alt="Future Labs" class="h-8 opacity-80 hover:opacity-100 transition"> | |
| <img src="https://via.placeholder.com/150x50/ec4899/ffffff?text=SMART" alt="Smart Industries" class="h-8 opacity-80 hover:opacity-100 transition"> | |
| </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 md:text-4xl font-bold text-gray-800 mb-4">Our <span class="gradient-text">AI Services</span></h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> | |
| We offer end-to-end AI consulting services to help your business leverage artificial intelligence effectively. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group"> | |
| <div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-blue-600 transition"> | |
| <i class="fas fa-brain text-2xl text-blue-600 group-hover:text-white transition"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-blue-600 transition">AI Strategy & Advisory</h3> | |
| <p class="text-gray-600"> | |
| Comprehensive AI roadmap development aligned with your business objectives and technology landscape. | |
| </p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group"> | |
| <div class="w-16 h-16 bg-indigo-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-indigo-600 transition"> | |
| <i class="fas fa-cogs text-2xl text-indigo-600 group-hover:text-white transition"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-indigo-600 transition">Custom AI Solutions</h3> | |
| <p class="text-gray-600"> | |
| Bespoke AI model development tailored to your specific use cases and data environment. | |
| </p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group"> | |
| <div class="w-16 h-16 bg-green-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-green-600 transition"> | |
| <i class="fas fa-chart-line text-2xl text-green-600 group-hover:text-white transition"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-green-600 transition">Predictive Analytics</h3> | |
| <p class="text-gray-600"> | |
| Advanced statistical modeling and forecasting to uncover patterns in your business data. | |
| </p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group"> | |
| <div class="w-16 h-16 bg-purple-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-purple-600 transition"> | |
| <i class="fas fa-robot text-2xl text-purple-600 group-hover:text-white transition"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-purple-600 transition">Process Automation</h3> | |
| <p class="text-gray-600"> | |
| Intelligent automation of repetitive tasks to increase efficiency and reduce operational costs. | |
| </p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group"> | |
| <div class="w-16 h-16 bg-teal-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-teal-600 transition"> | |
| <i class="fas fa-comments text-2xl text-teal-600 group-hover:text-white transition"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-teal-600 transition">Conversational AI</h3> | |
| <p class="text-gray-600"> | |
| Natural language processing solutions including chatbots and virtual assistants for superior customer engagement. | |
| </p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group"> | |
| <div class="w-16 h-16 bg-amber-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-amber-600 transition"> | |
| <i class="fas fa-graduation-cap text-2xl text-amber-600 group-hover:text-white transition"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-amber-600 transition">AI Training</h3> | |
| <p class="text-gray-600"> | |
| Customized training programs to upskill your team in AI technologies and best practices. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Approach Section --> | |
| <section id="approach" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our <span class="gradient-text">Unique Approach</span></h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> | |
| We don't just implement AI - we ensure it delivers measurable business impact. | |
| </p> | |
| </div> | |
| <div class="flex flex-col md:flex-row"> | |
| <div class="md:w-1/2 mb-12 md:mb-0 md:pr-12"> | |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" | |
| alt="AI Approach" | |
| class="w-full h-auto rounded-xl shadow-lg"> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="mb-8"> | |
| <div class="flex items-start mb-4"> | |
| <div class="bg-blue-100 text-blue-600 rounded-lg p-3 mr-4"> | |
| <i class="fas fa-search text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Discovery & Assessment</h3> | |
| <p class="text-gray-600"> | |
| Deep dive into your business processes to identify high-impact AI opportunities with clear ROI. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-8"> | |
| <div class="flex items-start mb-4"> | |
| <div class="bg-indigo-100 text-indigo-600 rounded-lg p-3 mr-4"> | |
| <i class="fas fa-lightbulb text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Solution Design</h3> | |
| <p class="text-gray-600"> | |
| Architect AI systems that integrate seamlessly with your existing infrastructure and workflows. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-8"> | |
| <div class="flex items-start mb-4"> | |
| <div class="bg-green-100 text-green-600 rounded-lg p-3 mr-4"> | |
| <i class="fas fa-code text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Iterative Development</h3> | |
| <p class="text-gray-600"> | |
| Agile implementation with continuous feedback loops to ensure alignment with business needs. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class=""> | |
| <div class="flex items-start mb-4"> | |
| <div class="bg-purple-100 text-purple-600 rounded-lg p-3 mr-4"> | |
| <i class="fas fa-rocket text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Deployment & Scaling</h3> | |
| <p class="text-gray-600"> | |
| Production rollout with monitoring and optimization to maximize long-term value. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Case Studies Section --> | |
| <section id="cases" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4"><span class="gradient-text">Success</span> Stories</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> | |
| See how we've helped businesses transform with authentic intelligence. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12"> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition cursor-pointer group"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" | |
| alt="Retail AI Case Study" | |
| class="w-full h-full object-cover group-hover:scale-105 transition duration-500"> | |
| </div> | |
| <div class="p-6"> | |
| <span class="inline-block px-3 py-1 bg-blue-100 text-blue-600 rounded-full text-sm font-semibold mb-3">Retail</span> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2 group-hover:text-blue-600 transition">30% Sales Lift with AI-Powered Recommendations</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Implemented a personalized recommendation engine that increased average order value by 22%. | |
| </p> | |
| <div class="flex items-center text-blue-600 font-medium"> | |
| Read Case Study | |
| <i class="fas fa-arrow-right ml-2 transition group-hover:translate-x-1"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition cursor-pointer group"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/1579546929517-abb575faa613?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" | |
| alt="Manufacturing AI Case Study" | |
| class="w-full h-full object-cover group-hover:scale-105 transition duration-500"> | |
| </div> | |
| <div class="p-6"> | |
| <span class="inline-block px-3 py-1 bg-green-100 text-green-600 rounded-full text-sm font-semibold mb-3">Manufacturing</span> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2 group-hover:text-green-600 transition">Predictive Maintenance Saves $4M Annually</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Reduced equipment downtime by 65% through AI-driven failure prediction models. | |
| </p> | |
| <div class="flex items-center text-green-600 font-medium"> | |
| Read Case Study | |
| <i class="fas fa-arrow-right ml-2 transition group-hover:translate-x-1"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center"> | |
| <button class="bg-white border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition"> | |
| View All Case Studies | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section class="py-20 bg-gradient-to-r from-blue-600 to-indigo-700 text-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">What Our Clients Say</h2> | |
| <p class="text-xl opacity-90 max-w-3xl mx-auto"> | |
| Don't just take our word for it - hear from organizations we've partnered with. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/women/46.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Sarah Johnson</h4> | |
| <p class="text-sm opacity-80">CTO, TechForward</p> | |
| </div> | |
| </div> | |
| <p class="italic mb-6"> | |
| "dbAI transformed our customer segmentation approach. Their AI solution provided insights we never would have discovered manually." | |
| </p> | |
| <div class="flex text-yellow-300"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Michael Chen</h4> | |
| <p class="text-sm opacity-80">Director of Operations, Global Retail</p> | |
| </div> | |
| </div> | |
| <p class="italic mb-6"> | |
| "The inventory optimization system dbAI built for us reduced stockouts by 40% while decreasing excess inventory by 28%." | |
| </p> | |
| <div class="flex text-yellow-300"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Elena Rodriguez" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Elena Rodriguez</h4> | |
| <p class="text-sm opacity-80">VP Analytics, FinServ Corp</p> | |
| </div> | |
| </div> | |
| <p class="italic mb-6"> | |
| "Their fraud detection models have improved our accuracy by 35% while reducing false positives by half. Incredible results." | |
| </p> | |
| <div class="flex text-yellow-300"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="max-w-4xl mx-auto bg-gray-50 rounded-xl shadow-md overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 bg-gradient-to-br from-blue-600 to-indigo-700 text-white p-12"> | |
| <h2 class="text-3xl font-bold mb-6">Let's Build Something Extraordinary</h2> | |
| <p class="mb-8 opacity-90"> | |
| Ready to explore how authentic intelligence can transform your business? Contact our team for a consultation. | |
| </p> | |
| <div class="space-y-5"> | |
| <div class="flex items-center"> | |
| <div class="bg-white bg-opacity-20 rounded-full p-3 mr-4"> | |
| <i class="fas fa-envelope text-xl"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium opacity-90">Email Us</p> | |
| <p class="text-sm">contact@dbai.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="bg-white bg-opacity-20 rounded-full p-3 mr-4"> | |
| <i class="fas fa-phone text-xl"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium opacity-90">Call Us</p> | |
| <p class="text-sm">+1 (555) 123-4567</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <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> | |
| <p class="font-medium opacity-90">Visit Us</p> | |
| <p class="text-sm">123 AI Boulevard, Tech District</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 p-12"> | |
| <h3 class="text-2xl font-bold text-gray-800 mb-6">Send Us a Message</h3> | |
| <form id="contactForm" class="space-y-5"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label> | |
| <input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"> | |
| </div> | |
| <div> | |
| <label for="company" class="block text-sm font-medium text-gray-700 mb-1">Company</label> | |
| <input type="text" id="company" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-sm font-medium text-gray-700 mb-1">How can we help?</label> | |
| <textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg transition transform hover:-translate-y-1"> | |
| Send Message | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ Section --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6 max-w-4xl"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Frequently Asked <span class="gradient-text">Questions</span></h2> | |
| <p class="text-xl text-gray-600"> | |
| Get answers to common questions about our AI consulting services. | |
| </p> | |
| </div> | |
| <div class="space-y-4"> | |
| <div class="border border-gray-200 rounded-xl overflow-hidden"> | |
| <button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none"> | |
| <h3 class="text-lg font-medium text-left text-gray-800">What makes dbAI different from other AI consulting firms?</h3> | |
| <i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i> | |
| </button> | |
| <div class="faq-answer px-6 pb-6 hidden"> | |
| <p class="text-gray-600"> | |
| At dbAI, we focus on "Authentic Intelligence" - solutions that genuinely understand and address your specific business challenges rather than just applying generic AI models. Our approach combines deep industry expertise with cutting-edge technical capabilities to deliver measurable results. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-xl overflow-hidden"> | |
| <button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none"> | |
| <h3 class="text-lg font-medium text-left text-gray-800">How long does it typically take to see results from AI implementation?</h3> | |
| <i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i> | |
| </button> | |
| <div class="faq-answer px-6 pb-6 hidden"> | |
| <p class="text-gray-600"> | |
| Our phased approach means you'll begin seeing initial results within weeks - faster for well-defined use cases. Most clients achieve their primary KPIs within 3-6 months. However, we emphasize that AI is an evolving capability that continues to improve over time with more data and refinement. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-xl overflow-hidden"> | |
| <button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none"> | |
| <h3 class="text-lg font-medium text-left text-gray-800">Do I need to have AI expertise in-house to work with dbAI?</h3> | |
| <i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i> | |
| </button> | |
| <div class="faq-answer px-6 pb-6 hidden"> | |
| <p class="text-gray-600"> | |
| Not at all. We guide clients through every step of the process, regardless of their technical maturity. For organizations looking to build internal AI capabilities, we offer knowledge transfer and training as part of our engagement model. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="border border-gray-200 rounded-xl overflow-hidden"> | |
| <button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none"> | |
| <h3 class="text-lg font-medium text-left text-gray-800">What industries do you specialize in?</h3> | |
| <i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i> | |
| </button> | |
| <div class="faq-answer px-6 pb-6 hidden"> | |
| <p class="text-gray-600"> | |
| While our methodologies apply across sectors, we have particularly deep experience in retail, manufacturing, financial services, healthcare, and logistics. Our team includes domain experts who understand the unique challenges and opportunities in these industries. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Newsletter Section --> | |
| <section class="py-16 bg-gradient-to-r from-indigo-600 to-purple-600 text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Stay Ahead with AI Insights</h2> | |
| <p class="text-xl max-w-2xl mx-auto mb-8 opacity-90"> | |
| Subscribe to our newsletter for the latest trends, case studies, and AI strategy tips. | |
| </p> | |
| <form class="max-w-md mx-auto flex"> | |
| <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg outline-none text-gray-800"> | |
| <button type="submit" class="bg-blue-600 hover:bg-blue-700 px-6 py-3 rounded-r-lg font-medium transition"> | |
| Subscribe | |
| </button> | |
| </form> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white pt-16 pb-8"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12"> | |
| <div> | |
| <div class="text-3xl font-bold mb-4"> | |
| <span class="gradient-text">dbAI</span> | |
| </div> | |
| <p class="text-gray-400 mb-6"> | |
| Unleashing authentic intelligence to solve real business challenges. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-6">Services</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">AI Strategy</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Machine Learning</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Deep Learning</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Computer Vision</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">NLP Solutions</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-6">Company</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-6">Resources</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">White Papers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">AI Glossary</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Webinars</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0"> | |
| © 2023 dbAI. All rights reserved. | |
| </p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // 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'); | |
| } | |
| }); | |
| }); | |
| // FAQ accordion functionality | |
| document.querySelectorAll('.faq-question').forEach(question => { | |
| question.addEventListener('click', () => { | |
| const answer = question.nextElementSibling; | |
| const icon = question.querySelector('i'); | |
| // Toggle answer visibility | |
| answer.classList.toggle('hidden'); | |
| // Rotate icon | |
| if (answer.classList.contains('hidden')) { | |
| icon.classList.remove('fa-chevron-up'); | |
| icon.classList.add('fa-chevron-down'); | |
| } else { | |
| icon.classList.remove('fa-chevron-down'); | |
| icon.classList.add('fa-chevron-up'); | |
| } | |
| }); | |
| }); | |
| // Form submission | |
| document.getElementById('contactForm').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| alert('Thank you for your message! We will get back to you soon.'); | |
| this.reset(); | |
| }); | |
| // Intersection Observer for animations | |
| const observerOptions = { | |
| threshold: 0.1 | |
| }; | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('animate-fadeIn'); | |
| } | |
| }); | |
| }, observerOptions); | |
| document.querySelectorAll('section').forEach(section => { | |
| observer.observe(section); | |
| }); | |
| // Add animation class to Tailwind | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| animation: { | |
| fadeIn: 'fadeIn 1s ease-in-out forwards', | |
| }, | |
| keyframes: { | |
| fadeIn: { | |
| '0%': { opacity: 0, transform: 'translateY(20px)' }, | |
| '100%': { opacity: 1, transform: 'translateY(0)' }, | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </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=huggingdude19/dbai-sample" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |