1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" href="./favicon.png" type="image/png">
- <title>Pomelo Emulator</title>
- <link rel="stylesheet" href="styles.css">
- <script src="https://kit.fontawesome.com/f566336324.js" crossorigin="anonymous"></script>
- <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
- <script src="script.js" defer async></script>
- </head>
- <body>
- <!-- Hero Section -->
- <section id="home" class="hero-section">
- <div class="hero-content">
- <div style="height: 5px;"></div>
- <div class="desktop-only" style="height: 10vh;"></div>
- <style>
- @media (max-width: 768px) {
- .desktop-only {
- display: none;
- }
- }
- </style>
- <img src="pomelo-icon.png" alt="Pomelo Icon" title="''Pomelo Emu Waterslice'' by CycloKid is licensed under CC BY-NC 4.0" width="200" height="200">
- <h2>Pomelo</h2>
- <p>A Nintendo Switch Emulator for iOS and iPadOS</p>
- <div class="button-group">
- <a href="./downloads" class="usualbutton" role="button"><i class="fa-solid fa-download"></i> Download</a>
- <a href="./titles" class="redbutton" role="button"><i class="fa-solid fa-gears"></i> Title Playability</a>
- <a href="https://gitlab.com/pomelo-emu/Pomelo" class="usualbutton" role="button"><i class="fa-brands fa-gitlab"></i> Source Code</a>
- <a href="https://discord.gg/mY3tFQtXZT" class="purple" role="button"><i class="fa-brands fa-discord"></i> Discord</a>
- </div>
- </div>
- </section>
- <!-- Features Section -->
- <section id="features" class="features-section">
- <div class="container">
- <h2>Features</h2>
- <div class="feature-grid">
- <div class="feature-item">
- <h3>Compatibility</h3>
- <p>Pomelo supports a wide range of devices</p>
- </div>
- <div class="feature-item">
- <h3>Local Multiplayer</h3>
- <p>Play with other people on the go!</p>
- </div>
- <div class="feature-item">
- <h3>TrollStore Support</h3>
- <p>Compatible with TrollStore from iOS 15 to 17</p>
- </div>
- <div class="feature-item">
- <h3>Our Community</h3>
- <p>We are an open community. We welcome anyone looking for support, requesting features, or emulation discussion in general.</p>
- </div>
- </div>
- </div>
- </section>
- <!-- About Section -->
- <section id="about" class="about-section">
- <div class="container">
- <h2>About Us</h2>
- <p>We are Stossy11 and Tech Guy - We're aiming to provide the best NX emulation possible for iOS/iPadOS.</p>
- </div>
- </section>
- <!-- Footer -->
- <footer>
- <div class="container">
- <p>© 2024 Pomelo Emu. All rights reserved.</p>
- </div>
- </footer>
- </body>
- </html>
|