advisormatch-connect-pro / contact.html
MorleyMujansi's picture
On the About Lumikiza page section or footer, ensure the following links are working correctly: Benefits
12ae991 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | Lumikiza</title>
<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>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="py-20">
<section class="container mx-auto px-4 max-w-4xl">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-gray-900 mb-4">Contact Us</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Get in touch with the Lumikiza team</p>
</div>
<div class="bg-white rounded-xl shadow-sm p-8 md:p-10">
<h2 class="text-2xl font-bold text-gray-900 mb-6">We're Here to Help</h2>
<p class="text-gray-700 mb-6">Have questions about our platform, need technical support, or want to discuss partnership opportunities? Reach out to us.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
<div class="text-center">
<i data-feather="mail" class="w-8 h-8 text-blue-600 mx-auto mb-3"></i>
<h3 class="font-semibold">Email</h3>
<p class="text-gray-600">support@lumikiza.com</p>
</div>
<div class="text-center">
<i data-feather="phone" class="w-8 h-8 text-blue-600 mx-auto mb-3"></i>
<h3 class="font-semibold">Phone</h3>
<p class="text-gray-600">+260 211 123 456</p>
</div>
<div class="text-center">
<i data-feather="map-pin" class="w-8 h-8 text-blue-600 mx-auto mb-3"></i>
<h3 class="font-semibold">Address</h3>
<p class="text-gray-600">Lusaka, Zambia</p>
</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/notification-bell.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>