index.html 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="icon" href="./favicon.png" type="image/png">
  7. <title>Pomelo Emulator</title>
  8. <link rel="stylesheet" href="styles.css">
  9. <script src="https://kit.fontawesome.com/f566336324.js" crossorigin="anonymous"></script>
  10. <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
  11. <script src="script.js" defer async></script>
  12. </head>
  13. <body>
  14. <!-- Hero Section -->
  15. <section id="home" class="hero-section">
  16. <div class="hero-content">
  17. <div style="height: 5px;"></div>
  18. <div class="desktop-only" style="height: 10vh;"></div>
  19. <style>
  20. @media (max-width: 768px) {
  21. .desktop-only {
  22. display: none;
  23. }
  24. }
  25. </style>
  26. <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">
  27. <h2>Pomelo</h2>
  28. <p>A Nintendo Switch Emulator for iOS and iPadOS</p>
  29. <div class="button-group">
  30. <a href="./downloads" class="usualbutton" role="button"><i class="fa-solid fa-download"></i> Download</a>
  31. <a href="./titles" class="redbutton" role="button"><i class="fa-solid fa-gears"></i> Title Playability</a>
  32. <a href="https://gitlab.com/pomelo-emu/Pomelo" class="usualbutton" role="button"><i class="fa-brands fa-gitlab"></i> Source Code</a>
  33. <a href="https://discord.gg/mY3tFQtXZT" class="purple" role="button"><i class="fa-brands fa-discord"></i> Discord</a>
  34. </div>
  35. </div>
  36. </section>
  37. <!-- Features Section -->
  38. <section id="features" class="features-section">
  39. <div class="container">
  40. <h2>Features</h2>
  41. <div class="feature-grid">
  42. <div class="feature-item">
  43. <h3>Compatibility</h3>
  44. <p>Pomelo supports a wide range of devices</p>
  45. </div>
  46. <div class="feature-item">
  47. <h3>Local Multiplayer</h3>
  48. <p>Play with other people on the go!</p>
  49. </div>
  50. <div class="feature-item">
  51. <h3>TrollStore Support</h3>
  52. <p>Compatible with TrollStore from iOS 15 to 17</p>
  53. </div>
  54. <div class="feature-item">
  55. <h3>Our Community</h3>
  56. <p>We are an open community. We welcome anyone looking for support, requesting features, or emulation discussion in general.</p>
  57. </div>
  58. </div>
  59. </div>
  60. </section>
  61. <!-- About Section -->
  62. <section id="about" class="about-section">
  63. <div class="container">
  64. <h2>About Us</h2>
  65. <p>We are Stossy11 and Tech Guy - We're aiming to provide the best NX emulation possible for iOS/iPadOS.</p>
  66. </div>
  67. </section>
  68. <!-- Footer -->
  69. <footer>
  70. <div class="container">
  71. <p>&copy; 2024 Pomelo Emu. All rights reserved.</p>
  72. </div>
  73. </footer>
  74. </body>
  75. </html>