<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>U-MEC Medical Equipment & Supplies Nigeria</title>
<meta name="description" content="Buy medical equipment, hospital beds, laboratory devices and medical supplies in Nigeria. Prices in Naira. Nationwide delivery.">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<script src="https://js.paystack.co/v1/inline.js"></script>
<style>
body{font-family:Poppins, sans-serif;margin:0;background:#f4f6f9;color:#333}
header{background:#0A2E5C;color:#fff;padding:15px;text-align:center}
nav{background:#00A859;padding:10px;text-align:center}
nav a{color:#fff;margin:0 15px;text-decoration:none;font-weight:600}
.container{padding:20px}
.products{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}
.card{background:#fff;padding:15px;border-radius:10px;box-shadow:0 4px 10px rgba(0,0,0,0.1)}
button{background:#0A2E5C;color:#fff;border:none;padding:10px;border-radius:5px;cursor:pointer}
button:hover{background:#082145}
footer{background:#0A2E5C;color:#fff;text-align:center;padding:20px;margin-top:30px}
.whatsapp{position:fixed;bottom:20px;right:20px;background:#25D366;color:#fff;padding:15px;border-radius:50px;text-decoration:none;font-weight:bold}
</style>
</head>
<body>
<header>
<h1>U-MEC Medical Equipment & Supplies</h1>
<p>Call / WhatsApp: +2348109831583 | Nationwide Delivery</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#shop">Shop</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<h2 id="shop">Featured Products</h2>
<div class="products">
<div class="card">
<h3>Digital BP Monitor</h3>
<p>Price: ₦38,500</p>
<button onclick="payWithPaystack(38500)">Buy Now</button>
</div>
<div class="card">
<h3>Manual Hospital Bed</h3>
<p>Price: ₦480,000</p>
<button onclick="payWithPaystack(480000)">Buy Now</button>
</div>
<div class="card">
<h3>Pulse Oximeter</h3>
<p>Price: ₦18,500</p>
<button onclick="payWithPaystack(18500)">Buy Now</button>
</div>
<div class="card">
<h3>Autoclave Machine</h3>
<p>Price: ₦920,000</p>
<button onclick="payWithPaystack(920000)">Buy Now</button>
</div>
</div>
<h2 id="contact">Contact Us</h2>
<p>Email: umecmedical@gmail.com</p>
<p>Phone: +2348109831583</p>
</div>
<footer>
<p>© 2026 U-MEC Medical Equipment Nigeria</p>
</footer>
<a class="whatsapp" href="https://wa.me/2348109831583" target="_blank">Chat on WhatsApp</a>
<script>
function payWithPaystack(amount){
var handler = PaystackPop.setup({
key: 'YOUR_PUBLIC_PAYSTACK_KEY',
email: 'customer@email.com',
amount: amount * 100,
currency: "NGN",
callback: function(response){
alert('Payment successful. Ref: ' + response.reference);
},
onClose: function(){
alert('Transaction cancelled');
}
});
handler.openIframe();
}
</script>
</body>
</html>
