opay-faq / index.html
wirenation62's picture
+234 814 445 8292 clear all the default contact info both mail and phone number then replace it with this whatsapp number - Initial Deployment
8b4adbb verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OPay - Frequently Asked Questions</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
.faq-item {
transition: all 0.3s ease;
}
.faq-item:hover {
background-color: #f8fafc;
}
.active-faq {
background-color: #f1f5f9;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex items-center justify-between">
<div class="flex items-center">
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl">OP</div>
<h1 class="ml-3 text-xl font-semibold text-gray-800">OPay</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-gray-600 hover:text-blue-600">Home</a>
<a href="#" class="text-gray-600 hover:text-blue-600">Services</a>
<a href="#" class="text-blue-600 font-medium">FAQ</a>
<a href="#" class="text-gray-600 hover:text-blue-600">Contact</a>
</nav>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="bg-blue-600 text-white py-16">
<div class="container mx-auto px-4 text-center">
<h1 class="text-3xl md:text-4xl font-bold mb-4">Frequently Asked Questions</h1>
<p class="text-lg md:text-xl max-w-2xl mx-auto">Find answers to common questions about OPay services and features</p>
</div>
</section>
<!-- FAQ Section -->
<section class="py-12">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<div class="mb-8">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">General Questions</h2>
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="faq-item bg-white rounded-lg shadow-sm p-6 cursor-pointer" onclick="toggleFAQ(this)">
<div class="flex justify-between items-center">
<h3 class="font-medium text-gray-800">What is OPay?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</div>
<div class="faq-content hidden mt-4 text-gray-600">
<p>OPay is a mobile payment platform that allows you to send and receive money, pay bills, buy airtime, and more, all from your smartphone. It's fast, secure, and convenient.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="faq-item bg-white rounded-lg shadow-sm p-6 cursor-pointer" onclick="toggleFAQ(this)">
<div class="flex justify-between items-center">
<h3 class="font-medium text-gray-800">How do I create an OPay account?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</div>
<div class="faq-content hidden mt-4 text-gray-600">
<p>To create an OPay account:</p>
<ol class="list-decimal pl-5 space-y-2 mt-2">
<li>Download the OPay app from Google Play Store or Apple App Store</li>
<li>Open the app and tap on "Register"</li>
<li>Enter your phone number and follow the verification process</li>
<li>Set up your PIN and complete your profile</li>
</ol>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="faq-item bg-white rounded-lg shadow-sm p-6 cursor-pointer" onclick="toggleFAQ(this)">
<div class="flex justify-between items-center">
<h3 class="font-medium text-gray-800">Is OPay free to use?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</div>
<div class="faq-content hidden mt-4 text-gray-600">
<p>Yes, OPay is free to download and use. However, some transactions may attract minimal fees which will be clearly displayed before you complete the transaction.</p>
</div>
</div>
</div>
</div>
<div class="mb-8">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Account & Security</h2>
<div class="space-y-4">
<!-- FAQ Item 4 -->
<div class="faq-item bg-white rounded-lg shadow-sm p-6 cursor-pointer" onclick="toggleFAQ(this)">
<div class="flex justify-between items-center">
<h3 class="font-medium text-gray-800">How do I reset my PIN?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</div>
<div class="faq-content hidden mt-4 text-gray-600">
<p>To reset your PIN:</p>
<ol class="list-decimal pl-5 space-y-2 mt-2">
<li>Open the OPay app and tap on "Forgot PIN"</li>
<li>Enter your registered phone number</li>
<li>Verify your identity with the OTP sent to your phone</li>
<li>Create a new PIN and confirm it</li>
</ol>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="faq-item bg-white rounded-lg shadow-sm p-6 cursor-pointer" onclick="toggleFAQ(this)">
<div class="flex justify-between items-center">
<h3 class="font-medium text-gray-800">What should I do if my phone is lost or stolen?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</div>
<div class="faq-content hidden mt-4 text-gray-600">
<p>If your phone is lost or stolen:</p>
<ol class="list-decimal pl-5 space-y-2 mt-2">
<li>Immediately contact your mobile network provider to block your SIM card</li>
<li>Contact OPay customer support to temporarily freeze your account</li>
<li>Once you have a new phone, you can reactivate your account by verifying your identity</li>
</ol>
</div>
</div>
</div>
</div>
<div class="mb-8">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Transactions</h2>
<div class="space-y-4">
<!-- FAQ Item 6 -->
<div class="faq-item bg-white rounded-lg shadow-sm p-6 cursor-pointer" onclick="toggleFAQ(this)">
<div class="flex justify-between items-center">
<h3 class="font-medium text-gray-800">How long does a transfer take?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</div>
<div class="faq-content hidden mt-4 text-gray-600">
<p>Transfers to other OPay users are instant. Transfers to bank accounts typically take a few minutes but may take up to 24 hours depending on the bank.</p>
</div>
</div>
<!-- FAQ Item 7 -->
<div class="faq-item bg-white rounded-lg shadow-sm p-6 cursor-pointer" onclick="toggleFAQ(this)">
<div class="flex justify-between items-center">
<h3 class="font-medium text-gray-800">What is the transaction limit?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</div>
<div class="faq-content hidden mt-4 text-gray-600">
<p>Transaction limits vary based on your account verification level:</p>
<ul class="list-disc pl-5 space-y-2 mt-2">
<li><strong>Basic Account:</strong> ₦50,000 daily limit</li>
<li><strong>Verified Account:</strong> ₦300,000 daily limit</li>
<li><strong>Premium Account:</strong> ₦1,000,000 daily limit</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="bg-gray-100 py-12">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-2xl font-semibold text-gray-800 mb-4">Still have questions?</h2>
<p class="text-gray-600 mb-8">Contact our customer support team for further assistance</p>
<div class="flex flex-col md:flex-row justify-center space-y-4 md:space-y-0 md:space-x-6">
<a href="#" class="bg-blue-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition">
<i data-feather="message-circle" class="inline mr-2"></i> Live Chat
</a>
<a href="https://wa.me/2348144458292" class="bg-white text-gray-800 px-6 py-3 rounded-lg font-medium border border-gray-300 hover:bg-gray-50 transition">
<i data-feather="message-square" class="inline mr-2"></i> WhatsApp Us
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">OPay</h3>
<p class="text-gray-400">Making financial services accessible and affordable for everyone.</p>
</div>
<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">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</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">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Security</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Connect</h3>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i data-feather="facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i data-feather="instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i data-feather="linkedin"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 OPay. All rights reserved.</p>
</div>
</div>
</footer>
<script>
function toggleFAQ(element) {
const content = element.querySelector('.faq-content');
const icon = element.querySelector('i');
if (content.classList.contains('hidden')) {
content.classList.remove('hidden');
element.classList.add('active-faq');
icon.setAttribute('data-feather', 'chevron-up');
} else {
content.classList.add('hidden');
element.classList.remove('active-faq');
icon.setAttribute('data-feather', 'chevron-down');
}
feather.replace();
}
</script>
<script>feather.replace();</script>
</body>
</html>