|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Nexus Robotics - AI-Powered Robotics Solutions</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% { transform: translateY(0px); } |
|
|
50% { transform: translateY(-20px); } |
|
|
100% { transform: translateY(0px); } |
|
|
} |
|
|
.floating { |
|
|
animation: float 6s ease-in-out infinite; |
|
|
} |
|
|
.gradient-text { |
|
|
background: linear-gradient(90deg, #3b82f6, #8b5cf6); |
|
|
-webkit-background-clip: text; |
|
|
background-clip: text; |
|
|
color: transparent; |
|
|
} |
|
|
.gradient-bg { |
|
|
background: linear-gradient(135deg, #1e3a8a 0%, #111827 100%); |
|
|
} |
|
|
.robot-arm { |
|
|
position: relative; |
|
|
} |
|
|
.robot-arm::after { |
|
|
content: ''; |
|
|
position: absolute; |
|
|
top: 0; |
|
|
left: 0; |
|
|
right: 0; |
|
|
bottom: 0; |
|
|
background: radial-gradient(circle at center, rgba(59, 130, 246, 0.4) 0%, transparent 70%); |
|
|
z-index: -1; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="font-sans antialiased text-gray-100"> |
|
|
|
|
|
<nav class="gradient-bg fixed w-full z-50"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="flex items-center justify-between h-16"> |
|
|
<div class="flex items-center"> |
|
|
<div class="flex-shrink-0"> |
|
|
<span class="text-2xl font-bold gradient-text">Nexus<span class="text-white">Robotics</span></span> |
|
|
</div> |
|
|
</div> |
|
|
<div class="hidden md:block"> |
|
|
<div class="ml-10 flex items-baseline space-x-4"> |
|
|
<a href="#home" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-blue-800 transition duration-300">Home</a> |
|
|
<a href="#solutions" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-blue-800 transition duration-300">Solutions</a> |
|
|
<a href="#technology" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-blue-800 transition duration-300">Technology</a> |
|
|
<a href="#about" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-blue-800 transition duration-300">About</a> |
|
|
<a href="#contact" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-blue-800 transition duration-300">Contact</a> |
|
|
</div> |
|
|
</div> |
|
|
<div class="md:hidden"> |
|
|
<button id="menu-toggle" class="text-gray-300 hover:text-white focus:outline-none"> |
|
|
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> |
|
|
</svg> |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div id="mobile-menu" class="hidden md:hidden gradient-bg"> |
|
|
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
|
|
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-800">Home</a> |
|
|
<a href="#solutions" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-800">Solutions</a> |
|
|
<a href="#technology" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-800">Technology</a> |
|
|
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-800">About</a> |
|
|
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-800">Contact</a> |
|
|
</div> |
|
|
</div> |
|
|
</nav> |
|
|
|
|
|
|
|
|
<section id="home" class="gradient-bg pt-32 pb-20 px-4 sm:px-6 lg:px-8"> |
|
|
<div class="max-w-7xl mx-auto"> |
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center"> |
|
|
<div> |
|
|
<h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6"> |
|
|
The Future of <span class="gradient-text">AI Robotics</span> is Here |
|
|
</h1> |
|
|
<p class="text-xl text-gray-300 mb-8"> |
|
|
Nexus Robotics develops cutting-edge AI-powered robotic solutions that transform industries and enhance human capabilities. |
|
|
</p> |
|
|
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
|
|
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300 text-center"> |
|
|
Get Started |
|
|
</a> |
|
|
<a href="#solutions" class="bg-transparent hover:bg-blue-800 text-white font-bold py-3 px-6 border border-blue-500 rounded-lg transition duration-300 text-center"> |
|
|
Learn More |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
<div class="robot-arm flex justify-center"> |
|
|
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1080&q=80" |
|
|
alt="AI Robotics" |
|
|
class="rounded-xl shadow-2xl floating max-w-full h-auto"> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="bg-gray-900 py-12"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<h2 class="text-center text-gray-400 text-sm font-semibold uppercase tracking-wider mb-8"> |
|
|
Trusted by industry leaders |
|
|
</h2> |
|
|
<div class="grid grid-cols-2 md:grid-cols-5 gap-8 items-center justify-center"> |
|
|
<div class="flex justify-center"> |
|
|
<img src="https://via.placeholder.com/150x60?text=Tesla" alt="Tesla" class="h-12 opacity-70 hover:opacity-100 transition duration-300"> |
|
|
</div> |
|
|
<div class="flex justify-center"> |
|
|
<img src="https://via.placeholder.com/150x60?text=Siemens" alt="Siemens" class="h-12 opacity-70 hover:opacity-100 transition duration-300"> |
|
|
</div> |
|
|
<div class="flex justify-center"> |
|
|
<img src="https://via.placeholder.com/150x60?text=Amazon" alt="Amazon" class="h-12 opacity-70 hover:opacity-100 transition duration-300"> |
|
|
</div> |
|
|
<div class="flex justify-center"> |
|
|
<img src="https://via.placeholder.com/150x60?text=NASA" alt="NASA" class="h-12 opacity-70 hover:opacity-100 transition duration-300"> |
|
|
</div> |
|
|
<div class="flex justify-center"> |
|
|
<img src="https://via.placeholder.com/150x60?text=SpaceX" alt="SpaceX" class="h-12 opacity-70 hover:opacity-100 transition duration-300"> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="solutions" class="py-20 bg-gray-900"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="gradient-text">Solutions</span></h2> |
|
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
|
We develop specialized robotic systems powered by artificial intelligence to solve complex challenges across industries. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 hover:shadow-xl hover:shadow-blue-900/20 transition duration-300"> |
|
|
<div class="w-16 h-16 bg-blue-900 rounded-lg flex items-center justify-center mb-6"> |
|
|
<i class="fas fa-industry text-3xl text-blue-400"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-3">Industrial Automation</h3> |
|
|
<p class="text-gray-400 mb-4"> |
|
|
Our AI-driven robotic arms and assembly line solutions increase manufacturing efficiency by up to 300%. |
|
|
</p> |
|
|
<a href="#" class="text-blue-400 hover:text-blue-300 font-medium inline-flex items-center"> |
|
|
Learn more <i class="fas fa-arrow-right ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 hover:shadow-xl hover:shadow-purple-900/20 transition duration-300"> |
|
|
<div class="w-16 h-16 bg-purple-900 rounded-lg flex items-center justify-center mb-6"> |
|
|
<i class="fas fa-medkit text-3xl text-purple-400"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-3">Medical Robotics</h3> |
|
|
<p class="text-gray-400 mb-4"> |
|
|
Precision surgical robots with machine learning capabilities for minimally invasive procedures. |
|
|
</p> |
|
|
<a href="#" class="text-purple-400 hover:text-purple-300 font-medium inline-flex items-center"> |
|
|
Learn more <i class="fas fa-arrow-right ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 hover:shadow-xl hover:shadow-green-900/20 transition duration-300"> |
|
|
<div class="w-16 h-16 bg-green-900 rounded-lg flex items-center justify-center mb-6"> |
|
|
<i class="fas fa-home text-3xl text-green-400"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-3">Smart Home Robotics</h3> |
|
|
<p class="text-gray-400 mb-4"> |
|
|
Intelligent home assistant robots that learn your habits and preferences for personalized service. |
|
|
</p> |
|
|
<a href="#" class="text-green-400 hover:text-green-300 font-medium inline-flex items-center"> |
|
|
Learn more <i class="fas fa-arrow-right ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="technology" class="py-20 gradient-bg"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center"> |
|
|
<div> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-6">Our <span class="gradient-text">Technology</span></h2> |
|
|
<p class="text-gray-300 mb-8 text-lg"> |
|
|
Nexus Robotics combines advanced artificial intelligence with precision engineering to create robots that learn, adapt, and excel in dynamic environments. |
|
|
</p> |
|
|
|
|
|
<div class="space-y-6"> |
|
|
<div class="flex"> |
|
|
<div class="flex-shrink-0"> |
|
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-900 text-blue-400"> |
|
|
<i class="fas fa-brain text-xl"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<h4 class="text-lg font-bold">Deep Learning</h4> |
|
|
<p class="text-gray-400"> |
|
|
Our proprietary neural networks enable robots to learn from experience and improve performance over time. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex"> |
|
|
<div class="flex-shrink-0"> |
|
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-900 text-purple-400"> |
|
|
<i class="fas fa-eye text-xl"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<h4 class="text-lg font-bold">Computer Vision</h4> |
|
|
<p class="text-gray-400"> |
|
|
Advanced vision systems allow our robots to perceive and interpret their environment with human-like accuracy. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex"> |
|
|
<div class="flex-shrink-0"> |
|
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-900 text-green-400"> |
|
|
<i class="fas fa-hands-helping text-xl"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<h4 class="text-lg font-bold">Human-Robot Interaction</h4> |
|
|
<p class="text-gray-400"> |
|
|
Natural language processing and intuitive interfaces for seamless collaboration between humans and robots. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="relative"> |
|
|
<div class="relative z-10"> |
|
|
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80" |
|
|
alt="AI Robotics Technology" |
|
|
class="rounded-xl shadow-2xl w-full"> |
|
|
</div> |
|
|
<div class="absolute -bottom-6 -right-6 w-64 h-64 bg-blue-900 rounded-xl opacity-20"></div> |
|
|
<div class="absolute -top-6 -left-6 w-64 h-64 bg-purple-900 rounded-xl opacity-20"></div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-16 bg-gray-900"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center"> |
|
|
<div class="p-6"> |
|
|
<div class="text-5xl font-bold text-blue-400 mb-2">150+</div> |
|
|
<div class="text-gray-400 uppercase text-sm font-semibold tracking-wider">Patents Filed</div> |
|
|
</div> |
|
|
<div class="p-6"> |
|
|
<div class="text-5xl font-bold text-purple-400 mb-2">24</div> |
|
|
<div class="text-gray-400 uppercase text-sm font-semibold tracking-wider">Countries Served</div> |
|
|
</div> |
|
|
<div class="p-6"> |
|
|
<div class="text-5xl font-bold text-green-400 mb-2">98%</div> |
|
|
<div class="text-gray-400 uppercase text-sm font-semibold tracking-wider">Client Satisfaction</div> |
|
|
</div> |
|
|
<div class="p-6"> |
|
|
<div class="text-5xl font-bold text-blue-400 mb-2">500+</div> |
|
|
<div class="text-gray-400 uppercase text-sm font-semibold tracking-wider">Robots Deployed</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="about" class="py-20 bg-gray-800"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">About <span class="gradient-text">Nexus Robotics</span></h2> |
|
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto"> |
|
|
Pioneering the future of intelligent robotics through innovation and cutting-edge research. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"> |
|
|
<div class="order-last lg:order-first"> |
|
|
<div class="bg-gray-700 rounded-xl p-8"> |
|
|
<h3 class="text-2xl font-bold mb-4">Our Mission</h3> |
|
|
<p class="text-gray-400 mb-6"> |
|
|
To create intelligent robotic systems that enhance human capabilities, improve quality of life, and solve complex challenges across industries. |
|
|
</p> |
|
|
<h3 class="text-2xl font-bold mb-4">Our Vision</h3> |
|
|
<p class="text-gray-400"> |
|
|
We envision a future where humans and robots collaborate seamlessly, where AI-powered robotics are accessible to all, and where technology serves to amplify human potential. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="relative"> |
|
|
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80" |
|
|
alt="Nexus Robotics Team" |
|
|
class="rounded-xl shadow-2xl w-full"> |
|
|
<div class="absolute -bottom-6 -right-6 w-40 h-40 bg-blue-900 rounded-xl opacity-20 -z-10"></div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="mt-20"> |
|
|
<h3 class="text-2xl font-bold text-center mb-12">Meet Our <span class="gradient-text">Leadership</span></h3> |
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8"> |
|
|
|
|
|
<div class="bg-gray-700 rounded-xl overflow-hidden hover:shadow-xl hover:shadow-blue-900/20 transition duration-300"> |
|
|
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Dr. Sarah Chen" class="w-full h-64 object-cover"> |
|
|
<div class="p-6"> |
|
|
<h4 class="text-xl font-bold">Dr. Sarah Chen</h4> |
|
|
<p class="text-blue-400 mb-3">CEO & Founder</p> |
|
|
<p class="text-gray-400 text-sm"> |
|
|
Former MIT Robotics Lab Director with 15+ years in AI and robotic systems development. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="bg-gray-700 rounded-xl overflow-hidden hover:shadow-xl hover:shadow-purple-900/20 transition duration-300"> |
|
|
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Dr. Raj Patel" class="w-full h-64 object-cover"> |
|
|
<div class="p-6"> |
|
|
<h4 class="text-xl font-bold">Dr. Raj Patel</h4> |
|
|
<p class="text-purple-400 mb-3">CTO</p> |
|
|
<p class="text-gray-400 text-sm"> |
|
|
Machine learning expert specializing in computer vision and autonomous systems. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="bg-gray-700 rounded-xl overflow-hidden hover:shadow-xl hover:shadow-green-900/20 transition duration-300"> |
|
|
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Elena Rodriguez" class="w-full h-64 object-cover"> |
|
|
<div class="p-6"> |
|
|
<h4 class="text-xl font-bold">Elena Rodriguez</h4> |
|
|
<p class="text-green-400 mb-3">VP of Engineering</p> |
|
|
<p class="text-gray-400 text-sm"> |
|
|
Robotics hardware specialist with expertise in industrial automation systems. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="bg-gray-700 rounded-xl overflow-hidden hover:shadow-xl hover:shadow-blue-900/20 transition duration-300"> |
|
|
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="James Wilson" class="w-full h-64 object-cover"> |
|
|
<div class="p-6"> |
|
|
<h4 class="text-xl font-bold">James Wilson</h4> |
|
|
<p class="text-blue-400 mb-3">VP of Product</p> |
|
|
<p class="text-gray-400 text-sm"> |
|
|
Product development leader focused on human-robot interaction design. |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-20 gradient-bg"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">What Our <span class="gradient-text">Clients Say</span></h2> |
|
|
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> |
|
|
Hear from industry leaders who have transformed their operations with our robotic solutions. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
|
|
|
|
<div class="bg-gray-800 bg-opacity-50 rounded-xl p-8"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa Thompson" class="w-12 h-12 rounded-full mr-4"> |
|
|
<div> |
|
|
<h4 class="font-bold">Lisa Thompson</h4> |
|
|
<p class="text-blue-400 text-sm">COO, Manufacturing Corp</p> |
|
|
</div> |
|
|
</div> |
|
|
<p class="text-gray-300 italic"> |
|
|
"Nexus Robotics transformed our production line. Their AI-powered robots increased our output by 220% while reducing errors to near zero." |
|
|
</p> |
|
|
<div class="mt-4 text-yellow-400"> |
|
|
<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-gray-800 bg-opacity-50 rounded-xl p-8"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Dr. Michael Zhou" class="w-12 h-12 rounded-full mr-4"> |
|
|
<div> |
|
|
<h4 class="font-bold">Dr. Michael Zhou</h4> |
|
|
<p class="text-purple-400 text-sm">Chief Surgeon, Metro Hospital</p> |
|
|
</div> |
|
|
</div> |
|
|
<p class="text-gray-300 italic"> |
|
|
"The precision of Nexus surgical robots has allowed us to perform complex procedures with unprecedented accuracy and faster recovery times." |
|
|
</p> |
|
|
<div class="mt-4 text-yellow-400"> |
|
|
<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-gray-800 bg-opacity-50 rounded-xl p-8"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4"> |
|
|
<div> |
|
|
<h4 class="font-bold">Sarah Johnson</h4> |
|
|
<p class="text-green-400 text-sm">Director, Smart Home Tech</p> |
|
|
</div> |
|
|
</div> |
|
|
<p class="text-gray-300 italic"> |
|
|
"Nexus home assistant robots have revolutionized our product line. Their learning capabilities and intuitive interface set them apart." |
|
|
</p> |
|
|
<div class="mt-4 text-yellow-400"> |
|
|
<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> |
|
|
|
|
|
|
|
|
<section id="contact" class="py-20 bg-gray-900"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center"> |
|
|
<div> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-6">Get In <span class="gradient-text">Touch</span></h2> |
|
|
<p class="text-gray-400 mb-8 text-lg"> |
|
|
Ready to transform your business with AI-powered robotics? Contact our team to discuss how we can help. |
|
|
</p> |
|
|
|
|
|
<div class="space-y-6"> |
|
|
<div class="flex items-start"> |
|
|
<div class="flex-shrink-0"> |
|
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-900 text-blue-400"> |
|
|
<i class="fas fa-map-marker-alt"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<h4 class="text-lg font-bold">Headquarters</h4> |
|
|
<p class="text-gray-400"> |
|
|
123 Robotics Way<br> |
|
|
San Francisco, CA 94107 |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex items-start"> |
|
|
<div class="flex-shrink-0"> |
|
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-900 text-purple-400"> |
|
|
<i class="fas fa-envelope"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<h4 class="text-lg font-bold">Email Us</h4> |
|
|
<p class="text-gray-400"> |
|
|
info@nexusrobotics.com<br> |
|
|
sales@nexusrobotics.com |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex items-start"> |
|
|
<div class="flex-shrink-0"> |
|
|
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-900 text-green-400"> |
|
|
<i class="fas fa-phone-alt"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<h4 class="text-lg font-bold">Call Us</h4> |
|
|
<p class="text-gray-400"> |
|
|
+1 (555) 123-4567<br> |
|
|
Mon-Fri, 9am-5pm PST |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8"> |
|
|
<h3 class="text-2xl font-bold mb-6">Send Us a Message</h3> |
|
|
<form id="contact-form"> |
|
|
<div class="mb-6"> |
|
|
<label for="name" class="block text-gray-400 mb-2">Full Name</label> |
|
|
<input type="text" id="name" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required> |
|
|
</div> |
|
|
<div class="mb-6"> |
|
|
<label for="email" class="block text-gray-400 mb-2">Email Address</label> |
|
|
<input type="email" id="email" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required> |
|
|
</div> |
|
|
<div class="mb-6"> |
|
|
<label for="company" class="block text-gray-400 mb-2">Company</label> |
|
|
<input type="text" id="company" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-white"> |
|
|
</div> |
|
|
<div class="mb-6"> |
|
|
<label for="message" class="block text-gray-400 mb-2">Message</label> |
|
|
<textarea id="message" rows="4" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required></textarea> |
|
|
</div> |
|
|
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300"> |
|
|
Send Message |
|
|
</button> |
|
|
</form> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-16 gradient-bg"> |
|
|
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
|
|
<h2 class="text-3xl font-bold mb-4">Stay Updated</h2> |
|
|
<p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto"> |
|
|
Subscribe to our newsletter for the latest in robotics innovation, product updates, and industry insights. |
|
|
</p> |
|
|
<form class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto"> |
|
|
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 bg-gray-800 bg-opacity-50 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-white"> |
|
|
<button type="submit" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300 whitespace-nowrap"> |
|
|
Subscribe |
|
|
</button> |
|
|
</form> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<footer class="bg-gray-900 pt-12 pb-8"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12"> |
|
|
<div> |
|
|
<h3 class="text-lg font-semibold mb-4">Company</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Press</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-lg font-semibold mb-4">Products</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Industrial</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Medical</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Consumer</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Research</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-lg font-semibold mb-4">Resources</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Documentation</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">API Reference</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Case Studies</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Whitepapers</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-lg font-semibold mb-4">Legal</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Security</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Compliance</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="border-t border-gray-800 pt-8"> |
|
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
|
<div class="mb-4 md:mb-0"> |
|
|
<span class="text-xl font-bold gradient-text">Nexus<span class="text-white">Robotics</span></span> |
|
|
</div> |
|
|
<div class="flex space-x-6 mb-4 md:mb-0"> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
|
<i class="fab fa-twitter text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
|
<i class="fab fa-linkedin text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
|
<i class="fab fa-github text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
|
<i class="fab fa-youtube text-xl"></i> |
|
|
</a> |
|
|
</div> |
|
|
<div class="text-gray-500 text-sm"> |
|
|
© 2023 Nexus Robotics. All rights reserved. |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
|
|
|
<script> |
|
|
|
|
|
document.getElementById('menu-toggle').addEventListener('click', function() { |
|
|
document.getElementById('mobile-menu').classList.toggle('hidden'); |
|
|
}); |
|
|
|
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
|
anchor.addEventListener('click', function (e) { |
|
|
e.preventDefault(); |
|
|
|
|
|
document.querySelector(this.getAttribute('href')).scrollIntoView({ |
|
|
behavior: 'smooth' |
|
|
}); |
|
|
|
|
|
|
|
|
if (!document.getElementById('mobile-menu').classList.contains('hidden')) { |
|
|
document.getElementById('mobile-menu').classList.add('hidden'); |
|
|
} |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
document.getElementById('contact-form').addEventListener('submit', function(e) { |
|
|
e.preventDefault(); |
|
|
|
|
|
|
|
|
const name = document.getElementById('name').value; |
|
|
const email = document.getElementById('email').value; |
|
|
const company = document.getElementById('company').value; |
|
|
const message = document.getElementById('message').value; |
|
|
|
|
|
|
|
|
console.log('Form submitted:', { name, email, company, message }); |
|
|
|
|
|
|
|
|
alert('Thank you for your message! Our team will get back to you soon.'); |
|
|
|
|
|
|
|
|
this.reset(); |
|
|
}); |
|
|
</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=ratandeep/r1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |