Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>About MegaETH</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <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-900 text-white min-h-screen"> | |
| <custom-sidebar></custom-sidebar> | |
| <div class="lg:ml-64"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-8"> | |
| <div class="text-center mb-12"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-4">About MegaETH</h1> | |
| <p class="text-xl text-gray-300 max-w-2xl mx-auto">Learn more about the revolutionary DeFi yield layer built on Ethereum</p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 mb-12"> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-center"> | |
| <div> | |
| <h2 class="text-3xl font-bold mb-4">Revolutionizing DeFi Yield</h2> | |
| <p class="text-gray-300 mb-6"> | |
| MegaETH represents a fundamental shift in how DeFi yields are structured and earned. Built as Ethereum's native yield layer, | |
| MegaETH transforms the way users interact with liquid staking tokens (LSTs) while maintaining the security and decentralization | |
| principles of Ethereum. | |
| </p> | |
| <p class="text-gray-300 mb-6"> | |
| As an actively managed yield layer, MegaETH dynamically shifts between LRTs (Liquid Restaking Tokens) and LSTs based on market | |
| conditions and yield opportunities identified by decentralized governance. | |
| </p> | |
| <div class="flex flex-wrap gap-4"> | |
| <div class="bg-gray-700 px-4 py-2 rounded-lg"> | |
| <div class="text-purple-400 font-bold">DeFi Innovation</div> | |
| </div> | |
| <div class="bg-gray-700 px-4 py-2 rounded-lg"> | |
| <div class="text-purple-400 font-bold">Native Yield Layer</div> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <img src="http://static.photos/technology/640x360/123" alt="MegaETH Technology" class="rounded-xl shadow-lg w-full"> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12"> | |
| <div class="bg-gray-800 rounded-xl p-6"> | |
| <div class="text-purple-500 mb-4"> | |
| <i data-feather="globe" class="w-10 h-10"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Ethereum-Native Design</h3> | |
| <p class="text-gray-300"> | |
| MegaETH is purpose-built for Ethereum without abstraction layers, delivering pure, native yield directly on-chain. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-6"> | |
| <div class="text-purple-500 mb-4"> | |
| <i data-feather="refresh-cw" class="w-10 h-10"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Active Management</h3> | |
| <p class="text-gray-300"> | |
| Dynamically shifts between LRTs and LSTs to maximize yield based on real-time market conditions. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-6"> | |
| <div class="text-purple-500 mb-4"> | |
| <i data-feather="users" class="w-10 h-10"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Decentralized Governance</h3> | |
| <p class="text-gray-300"> | |
| Community-driven decision making through decentralized governance mechanisms ensures fair participation. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="bg-gradient-to-r from-purple-900 to-pink-900 rounded-xl p-8 text-center"> | |
| <h2 class="text-3xl font-bold mb-4">Our Mission</h2> | |
| <p class="text-xl max-w-3xl mx-auto mb-8"> | |
| To create a sustainable and robust yield ecosystem that maximizes returns while ensuring the long-term health of Ethereum's decentralized infrastructure. | |
| </p> | |
| <button class="bg-white text-purple-900 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition duration-300"> | |
| Join Our Community | |
| </button> | |
| </div> | |
| </main> | |
| <custom-footer></custom-footer> | |
| </div> | |
| <script src="components/sidebar.js"></script> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> | |