dev-Rachitgarg's picture
add the nav bar and the pricing plans and header and footer add these
20d3c9a verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About HandSpeak AI</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<header class="bg-gradient-to-r from-gray-900 to-gray-800 py-16">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4 text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-blue-500">
About HandSpeak AI
</h1>
<p class="text-xl text-gray-300 max-w-2xl mx-auto">
Our mission to bridge communication gaps through technology
</p>
</div>
</header>
<main class="flex-grow container mx-auto px-4 py-12">
<div class="max-w-4xl mx-auto">
<h1 class="text-4xl font-bold mb-8 text-center text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-blue-500">
About HandSpeak AI
</h1>
<div class="space-y-8">
<section class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-2xl font-bold mb-4 text-teal-400">Our Mission</h2>
<p class="text-gray-300 leading-relaxed">
HandSpeak AI is revolutionizing communication by breaking down barriers between sign language users and the hearing world.
Our AI-powered translator provides real-time, accurate sign language recognition to foster inclusive communication.
</p>
</section>
<section class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-2xl font-bold mb-4 text-teal-400">The Technology</h2>
<p class="text-gray-300 leading-relaxed">
Using cutting-edge computer vision and machine learning algorithms, HandSpeak AI detects and interprets hand gestures with
over 95% accuracy. Our system continuously learns and improves from user interactions.
</p>
</section>
<section class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-2xl font-bold mb-4 text-teal-400">The Team</h2>
<div class="grid md:grid-cols-3 gap-6">
<div class="text-center">
<img src="http://static.photos/people/200x200/1" alt="CEO" class="rounded-full w-32 h-32 object-cover mx-auto mb-3">
<h3 class="font-bold">Alex Chen</h3>
<p class="text-gray-400 text-sm">CEO & Founder</p>
</div>
<div class="text-center">
<img src="http://static.photos/people/200x200/2" alt="CTO" class="rounded-full w-32 h-32 object-cover mx-auto mb-3">
<h3 class="font-bold">Maria Rodriguez</h3>
<p class="text-gray-400 text-sm">CTO</p>
</div>
<div class="text-center">
<img src="http://static.photos/people/200x200/3" alt="Lead Researcher" class="rounded-full w-32 h-32 object-cover mx-auto mb-3">
<h3 class="font-bold">James Wilson</h3>
<p class="text-gray-400 text-sm">Lead AI Researcher</p>
</div>
</div>
</section>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
</body>
</html>