undefined / index.html
Cybernetics43's picture
gh repo clone sunilmurphy/HydroMinerRentOnline, download this repo and config the project to my electrum/fuck wallet
f784aff verified
<!DOCTYPE html>
<html>
<head>
<title>My app</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="flex justify-center items-center h-screen overflow-hidden bg-white font-sans text-center px-6">
<div class="w-full">
<span class="text-xs rounded-full mb-2 inline-block px-2 py-1 border border-amber-500/15 bg-amber-500/15 text-amber-500">🔥 New version dropped!</span>
<div class="mb-8 p-4 bg-gray-100 rounded-lg">
<h3 class="font-bold text-lg mb-2">Electrum/Fuck Wallet:</h3>
<p class="text-blue-600 font-mono">bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh</p>
<button class="mt-2 px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600" onclick="copyToClipboard('bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh')">Copy Address</button>
</div>
<a href="https://play.google.com/store/apps/details?id=com.btc.cloud.mining.app" class="inline-block mb-6">
<img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" alt="Get it on Google Play" class="h-16">
</a>
<h1 class="text-4xl lg:text-6xl font-bold font-sans">
<span class="text-2xl lg:text-4xl text-gray-400 block font-medium">I'm ready to work,</span>
Ask me anything.
</h1>
</div>
<div class="absolute bottom-8 left-0 w-full px-6">
<div class="bg-blue-50 p-4 rounded-lg max-w-md mx-auto">
<p class="text-sm">All miner deposits should be sent to:</p>
<p class="font-bold text-blue-600">bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh</p>
</div>
</div>
<script>
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(() => {
alert('Wallet address copied to clipboard!');
});
}
</script>
<script></script>
</body>
</html>