|
1 | 1 | <!DOCTYPE html> |
2 | | -<html lang="en"> |
| 2 | +<html lang="en" class="scroll-smooth"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <meta name="theme-color" content="#111827"> |
| 7 | + <meta name="description" content="PowerEssentials Changelog - Track updates and improvements for the ultimate Minecraft Bedrock server plugin"> |
| 8 | + <meta property="og:type" content="website"> |
| 9 | + <meta property="og:title" content="Changelog - PowerEssentials"> |
| 10 | + <meta property="og:description" content="Track updates and improvements for PowerEssentials plugin"> |
| 11 | + |
6 | 12 | <title>Changelog - PowerEssentials</title> |
7 | 13 | <script src="https://cdn.tailwindcss.com"></script> |
| 14 | + <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script> |
| 15 | + <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> |
8 | 16 | </head> |
9 | | -<body class="bg-gray-900 text-white"> |
10 | | - <nav class="bg-gray-800 p-5 flex justify-between items-center"> |
11 | | - <h1 class="text-2xl font-bold">PowerEssentials</h1> |
12 | | - <div class="space-x-6"> |
13 | | - <a href="index.html" class="hover:text-blue-400">Home</a> |
14 | | - <a href="download.html" class="hover:text-blue-400">Download</a> |
15 | | - <a href="about.html" class="hover:text-blue-400">About</a> |
| 17 | +<body class="bg-gray-900 text-white antialiased"> |
| 18 | + <nav class="bg-gray-800/95 backdrop-blur-md border-b border-gray-700 fixed w-full top-0 z-50" x-data="{ isOpen: false }"> |
| 19 | + <div class="container mx-auto px-4 sm:px-6 lg:px-8"> |
| 20 | + <div class="flex items-center justify-between h-16"> |
| 21 | + <a href="/" class="text-2xl font-bold bg-gradient-to-r from-blue-400 to-purple-500 bg-clip-text text-transparent"> |
| 22 | + PowerEssentials |
| 23 | + </a> |
| 24 | + <div class="hidden md:flex space-x-8"> |
| 25 | + <a href="index.html" class="hover:text-blue-400 transition-colors duration-200">Home</a> |
| 26 | + <a href="download.html" class="hover:text-blue-400 transition-colors duration-200">Download</a> |
| 27 | + <a href="about.html" class="hover:text-blue-400 transition-colors duration-200">About</a> |
| 28 | + </div> |
| 29 | + <button @click="isOpen = !isOpen" class="md:hidden p-2 rounded-md text-gray-400 hover:text-white focus:outline-none"> |
| 30 | + <svg x-show="!isOpen" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| 31 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/> |
| 32 | + </svg> |
| 33 | + <svg x-show="isOpen" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" style="display: none;"> |
| 34 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/> |
| 35 | + </svg> |
| 36 | + </button> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + <div class="md:hidden" x-show="isOpen" @click.away="isOpen = false" x-cloak> |
| 40 | + <div class="px-4 pt-2 pb-3 space-y-2"> |
| 41 | + <a href="index.html" class="block px-3 py-2 rounded-md hover:bg-gray-700">Home</a> |
| 42 | + <a href="download.html" class="block px-3 py-2 rounded-md hover:bg-gray-700">Download</a> |
| 43 | + <a href="about.html" class="block px-3 py-2 rounded-md hover:bg-gray-700">About</a> |
| 44 | + </div> |
16 | 45 | </div> |
17 | 46 | </nav> |
| 47 | + <main class="min-h-screen pt-32 pb-20"> |
| 48 | + <div class="container mx-auto px-4 sm:px-6 lg:px-8"> |
| 49 | + <div class="max-w-4xl mx-auto"> |
| 50 | + <div class="text-center mb-12"> |
| 51 | + <h1 class="text-4xl md:text-5xl font-extrabold mb-4"> |
| 52 | + <span class="bg-gradient-to-r from-blue-400 to-purple-500 bg-clip-text text-transparent"> |
| 53 | + Changelog |
| 54 | + </span> |
| 55 | + </h1> |
| 56 | + <p class="text-gray-400">Track updates and improvements</p> |
| 57 | + </div> |
| 58 | + |
| 59 | + <div class="bg-gray-800 rounded-xl p-6 mb-8 border-l-4 border-blue-500 transform transition-all hover:scale-[1.01]"> |
| 60 | + <div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-4"> |
| 61 | + <div class="mb-4 md:mb-0"> |
| 62 | + <h2 class="text-2xl font-bold flex items-center"> |
| 63 | + <i class="fas fa-rocket text-blue-400 mr-2"></i> |
| 64 | + v1.0.0.pmmp |
| 65 | + </h2> |
| 66 | + <div class="mt-2 text-sm text-gray-400"> |
| 67 | + <span class="mr-4"><i class="fas fa-user-shield mr-1"></i>AzliRynz</span> |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + <a href="/download.html" |
| 71 | + class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-lg flex items-center transition-colors"> |
| 72 | + <i class="fas fa-download mr-2"></i>Download .phar |
| 73 | + </a> |
| 74 | + </div> |
| 75 | + |
| 76 | + <div class="mt-6"> |
| 77 | + <div class="bg-gray-700/30 rounded-lg p-4 mb-6"> |
| 78 | + <code class="text-sm font-mono text-gray-300 break-all"> |
| 79 | + 845cb2a9a1d4f5b7d6e8f2a3c1b0d8e7f6a5c4d |
| 80 | + </code> |
| 81 | + </div> |
18 | 82 |
|
19 | | - <main class="max-w-4xl mx-auto mt-12"> |
20 | | - <h2 class="text-4xl font-bold text-center">Changelog</h2> |
21 | | - <div class="mt-6 bg-gray-800 p-6 rounded-lg shadow-md"> |
22 | | - <h3 class="text-2xl font-semibold">Version 1.0.0</h3> |
23 | | - <ul class="mt-2 list-disc list-inside text-gray-400"> |
24 | | - <li>Initial release with core features.</li> |
25 | | - <li>Added economy system.</li> |
26 | | - <li>Improved performance and stability.</li> |
27 | | - </ul> |
| 83 | + <h3 class="text-lg font-semibold mb-4">Release Highlights</h3> |
| 84 | + <ul class="space-y-3 text-gray-300"> |
| 85 | + <li class="flex items-start"> |
| 86 | + <i class="fas fa-plus-circle text-green-400 mt-1 mr-2"></i> |
| 87 | + Initial release with core features |
| 88 | + <p>• Mute Command</p> |
| 89 | + <p>• Sudo Command</p> |
| 90 | + </li> |
| 91 | + </ul> |
| 92 | + |
| 93 | + <div class="mt-6 pt-4 border-t border-gray-700"> |
| 94 | + <div class="flex items-center text-sm text-gray-400"> |
| 95 | + <i class="fas fa-calendar-alt mr-2"></i> |
| 96 | + Release Date: March 1, 2025 |
| 97 | + </div> |
| 98 | + <div class="mt-2 flex items-center text-sm text-gray-400"> |
| 99 | + <i class="fab fa-github mr-2"></i> |
| 100 | + PMMP Version: 5.0.0+ |
| 101 | + </div> |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + </div> |
| 105 | + |
| 106 | + <div class="mt-8 text-center"> |
| 107 | + <a href="https://github.com/PowerEssentials/PowerEssentials/releases" |
| 108 | + class="text-blue-400 hover:text-blue-300 transition-colors"> |
| 109 | + <i class="fab fa-github mr-2"></i>View All Releases on GitHub |
| 110 | + </a> |
| 111 | + </div> |
| 112 | + </div> |
28 | 113 | </div> |
29 | 114 | </main> |
| 115 | + <footer class="bg-gray-800/80 border-t border-gray-700"> |
| 116 | + <div class="container mx-auto px-4 sm:px-6 lg:px-8 py-8 text-center"> |
| 117 | + <div class="flex justify-center space-x-6 mb-4"> |
| 118 | + <a href="https://github.com/PowerEssentials" target="_blank" |
| 119 | + class="text-gray-400 hover:text-white transition-colors duration-200"> |
| 120 | + <i class="fab fa-github text-2xl"></i> |
| 121 | + </a> |
| 122 | + <a href="https://discord.gg/your-invite-link" target="_blank" |
| 123 | + class="text-gray-400 hover:text-white transition-colors duration-200"> |
| 124 | + <i class="fab fa-discord text-2xl"></i> |
| 125 | + </a> |
| 126 | + </div> |
| 127 | + <p class="mt-4 text-gray-400">© 2023 PowerEssentials. All rights reserved.</p> |
| 128 | + </div> |
| 129 | + </footer> |
30 | 130 | </body> |
31 | 131 | </html> |
0 commit comments