-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (85 loc) · 5.45 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#111827">
<meta name="description" content="PowerEssentials - The ultimate plugin for PocketMine-MP, Nukkit, and Bukkit servers. Enhance your server experience with many features and seamless performance.">
<meta property="og:type" content="website">
<meta property="og:title" content="PowerEssentials">
<meta property="og:description" content="The ultimate plugin for PocketMine-MP, Nukkit, and Bukkit servers.">
<title>PowerEssentials</title>
<script src="https://cdn.tailwindcss.com"></script>
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>
</head>
<body class="bg-gray-900 text-white antialiased">
<nav class="bg-gray-800/95 backdrop-blur-md border-b border-gray-700 fixed w-full top-0 z-50 shadow-lg" x-data="{ isOpen: false, scrolled: false }"
@scroll.window="scrolled = (window.pageYOffset > 10)">
<div class="container mx-auto px-4 sm:px-6 lg:px-8 transition-all duration-300" :class="{ 'py-2': scrolled, 'py-3': !scrolled }">
<div class="flex items-center justify-between h-14">
<a href="/" class="text-2xl font-bold gradient-text flex items-center">
<i class="fas fa-bolt mr-2"></i>
PowerEssentials
</a>
<div class="hidden md:flex space-x-6">
<a href="index.html" class="hover:text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-home mr-2 text-sm"></i> Home
</a>
<a href="download.html" class="hover:text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-download mr-2 text-sm"></i> Download
</a>
<a href="about.html" class="text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-info-circle mr-2 text-sm"></i> About
</a>
<a href="#" class="hover:text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-list-alt mr-2 text-sm"></i> Changelog
</a>
</div>
<button @click="isOpen = !isOpen" class="md:hidden p-2 rounded-md text-gray-400 hover:text-white focus:outline-none focus:ring-2 focus:ring-blue-500">
<svg x-show="!isOpen" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
<svg x-show="isOpen" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" style="display: none;">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
</div>
<div class="md:hidden" x-show="isOpen" @click.away="isOpen = false" x-transition x-cloak>
<div class="px-4 pt-2 pb-4 space-y-2 bg-gray-800/95 backdrop-blur-md">
<a href="index.html" class="block px-3 py-2 rounded-md hover:bg-gray-700 transition-colors flex items-center">
<i class="fas fa-home mr-3 text-sm w-4"></i> Home
</a>
<a href="download.html" class="block px-3 py-2 rounded-md hover:bg-gray-700 transition-colors flex items-center">
<i class="fas fa-download mr-3 text-sm w-4"></i> Download
</a>
<a href="about.html" class="block px-3 py-2 rounded-md bg-gray-700 text-blue-400 transition-colors flex items-center">
<i class="fas fa-info-circle mr-3 text-sm w-4"></i> About
</a>
<a href="#" class="block px-3 py-2 rounded-md hover:bg-gray-700 transition-colors flex items-center">
<i class="fas fa-list-alt mr-3 text-sm w-4"></i> Changelog
</a>
</div>
</div>
</nav>
<main class="min-h-screen flex items-center">
<div class="container mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div class="max-w-3xl mx-auto">
<h2 class="text-4xl md:text-6xl font-extrabold mb-6 animate-fade-in-up">
<span class="bg-gradient-to-r from-blue-400 to-purple-500 bg-clip-text text-transparent">
Enhance Your Server
</span>
<span class="block mt-2">Experience</span>
</h2>
<p class="text-lg md:text-xl text-gray-400 mb-8 mx-auto max-w-2xl">
The ultimate plugin for PocketMine-MP, Nukkit, and Bukkit servers. many features and seamless integration.
</p>
<a href="download.html"
class="inline-block bg-gradient-to-r from-blue-500 to-purple-600 hover:from-blue-600 hover:to-purple-700 text-white px-8 py-4 rounded-lg text-lg font-medium transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-xl">
Get Started Now
</a>
</div>
</div>
</main>
</body>
</html>