44 lines
2.1 KiB
HTML
44 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Hogyan legyél ingyenélő</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="flex items-center justify-center min-h-screen bg-gray-900 text-white">
|
|
<div class="max-w-4xl p-8 w-full">
|
|
<h1 class="text-5xl font-bold mb-10 text-center">Hogyan legyél ingyenélő</h1>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
<div class="bg-gray-800 rounded-lg p-6 hover:bg-gray-700 transition-all shadow-xl">
|
|
<h2 class="text-2xl font-bold mb-4 text-blue-400">Ingyen Mobilnet</h2>
|
|
<p class="text-gray-300 mb-4">Ingyenes mobil internet elérésére külső szolgáltatásokon keresztül.</p>
|
|
<a href="./ingyen-mobilnet/" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-semibold py-2 px-4 rounded transition-colors">
|
|
Részletek
|
|
</a>
|
|
</div>
|
|
|
|
<div class="bg-gray-800 rounded-lg p-6 hover:bg-gray-700 transition-all shadow-xl">
|
|
<h2 class="text-2xl font-bold mb-4 text-green-400">V2Ray V2mess Szerver Hostolás</h2>
|
|
<p class="text-gray-300 mb-4">Saját V2Ray szerver létrehozásának lépései és konfiguráció.</p>
|
|
<a href="./v2ray-v2mess-szerver-hostolas/" class="inline-block bg-green-600 hover:bg-green-700 text-white font-semibold py-2 px-4 rounded transition-colors">
|
|
Hamarosan
|
|
</a>
|
|
</div>
|
|
|
|
<div class="bg-gray-800 rounded-lg p-6 hover:bg-gray-700 transition-all shadow-xl">
|
|
<h2 class="text-2xl font-bold mb-4 text-purple-400">További Módszerek</h2>
|
|
<p class="text-gray-300 mb-4">További hasznos útmutatók és módszerek jönnek hamarosan.</p>
|
|
<span class="inline-block bg-gray-600 text-white font-semibold py-2 px-4 rounded cursor-not-allowed opacity-75">
|
|
Hamarosan
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="mt-16 text-center text-gray-500 text-sm">
|
|
<p>szia pearoo skelly vagyok</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|