places / features.html
Brandyjoy's picture
Add
e71074e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - Modern UI Showcase</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">
<link rel="stylesheet" href="style.css">
</head>
<body>
<custom-navbar></custom-navbar>
<main class="pt-20 pb-16 px-4 max-w-6xl mx-auto">
<section class="text-center mb-16">
<h1 class="text-4xl font-bold text-gray-900 mb-4">Our Powerful Features</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Discover what makes our product stand out from the competition</p>
</section>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
<div class="text-indigo-500 text-3xl mb-4">
<i class="fas fa-bolt"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Lightning Fast</h3>
<p class="text-gray-600">Optimized for speed with our cutting-edge technology stack.</p>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
<div class="text-indigo-500 text-3xl mb-4">
<i class="fas fa-shield-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Enterprise Security</h3>
<p class="text-gray-600">Military-grade encryption to keep your data safe and secure.</p>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
<div class="text-indigo-500 text-3xl mb-4">
<i class="fas fa-sync-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Real-time Sync</h3>
<p class="text-gray-600">Changes update instantly across all your devices.</p>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
<div class="text-indigo-500 text-3xl mb-4">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Advanced Analytics</h3>
<p class="text-gray-600">Get actionable insights with our powerful reporting tools.</p>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
<div class="text-indigo-500 text-3xl mb-4">
<i class="fas fa-cogs"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Customizable</h3>
<p class="text-gray-600">Tailor the platform to your exact business needs.</p>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-shadow">
<div class="text-indigo-500 text-3xl mb-4">
<i class="fas fa-headset"></i>
</div>
<h3 class="text-xl font-semibold mb-2">24/7 Support</h3>
<p class="text-gray-600">Our expert team is always ready to help you succeed.</p>
</div>
</div>
</main>
<script src="components/navbar.js"></script>
<script src="script.js"></script>
</body>
</html>