-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (75 loc) · 4.81 KB
/
index.html
File metadata and controls
81 lines (75 loc) · 4.81 KB
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hammerMC</title>
<script src="https://cdn.tailwindcss.com"></script>
<meta name="description" content="A Basic yet customizable plugin for your Minecraft server.">
<link rel="icon" href="./icon.png" sizes="any">
<link rel="apple-touch-icon" href="icon.png">
</head>
<body class="text-black">
<section class="py-20">
<div class="container mx-auto px-4">
<div class="flex flex-wrap items-center mt-32">
<div class="w-full md:w-5/12 px-4 mr-auto ml-auto">
<h3 class="text-6xl text-center md:text-left mb-10 md:text-9xl font-semibold leading-normal flex items-center">
<img src="./icon.png" alt="hammer" class="inline-block align-middle mr-2 size-24">
<span class="text-[#87a7ff]">hammer</span><span class="text-[#738ed9] text-5xl md:text-8xl">ᵐᶜ</span>
</h3>
<div class="-mt-14 ml-2 mb-10 flex flex-col md:flex-row text-gray-200 items-center md:gap-12">
<a class="my-2 relative font-semibold text-gray-500 before:absolute before:-bottom-1 before:h-0.5 before:w-full before:origin-right before:scale-x-0 before:bg-[#87a7ff] before:transition hover:before:scale-100" href="https://modrinth.com/plugin/hammermc">
modrinth
</a>
<a class="my-2 relative font-semibold text-gray-500 before:absolute before:-bottom-1 before:h-0.5 before:w-full before:origin-right before:scale-x-0 before:bg-[#87a7ff] before:transition hover:before:scale-100" href="https://ko-fi.com/unium">
donate
</a>
<a class="my-2 relative font-semibold text-gray-500 before:absolute before:-bottom-1 before:h-0.5 before:w-full before:origin-right before:scale-x-0 before:bg-[#87a7ff] before:transition hover:before:scale-100" href="https://hamium.xyz/hammer-docs">
documentation
</a>
<div class="relative mt-4 lg:mt-0 lg:mx-4"></div>
</div>
<p class="ml-2 text-lg font-bold leading-relaxed mb-10 text-gray-600">
An extremely simple and lightweight plugin, that has tons of commands and features, and is SUPER customizable!
</p>
<button onclick="downloadFile()" class="relative inline-flex items-center justify-center p-0.5 mb-2 me-2 overflow-hidden text-sm font-medium text-white transition-all ease-in duration-75 rounded-lg bg-[#586ea8] hover:bg-[#87a7ff] hover:text-white">
<ion-icon class="size-6 mx-2" name="download-outline"></ion-icon>
<span class="relative px-5 py-2.5 transition-all ease-in duration-75 bg-[#87a7ff] rounded-r-md hover:bg-[#586ea8]">
Download (direct)
</span>
</button>
<a href="https://cdn.modrinth.com/data/HcEivpp9/versions/gYIIpwdr/hammer-3.0.jar" target="_blank">
<button class="relative inline-flex items-center justify-center p-0.5 mb-2 me-2 overflow-hidden text-sm font-medium text-white transition-all ease-in duration-75 rounded-lg bg-[#586ea8] hover:bg-[#87a7ff] hover:text-white">
<ion-icon class="size-6 mx-2" name="download-outline"></ion-icon>
<span class="relative px-5 py-2.5 transition-all ease-in duration-75 bg-[#87a7ff] rounded-r-md hover:bg-[#586ea8]">
Download (modrinth)
</span>
</button>
</a>
</div>
<div class="w-full md:w-4/12 px-4 mr-auto ml-auto">
<div class="relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-2xl rounded-lg">
<img alt="factions" src="https://cdn.modrinth.com/data/HcEivpp9/images/3217e8213a4755d7bd9fd196f4ebccf0acdde60e.png" class="w-full align-middle rounded-lg transition-transform duration-300 transform hover:scale-105" />
</div>
<div class="relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-2xl rounded-lg">
<img alt="crowns" src="https://cdn.modrinth.com/data/HcEivpp9/images/2bf6a0f2efd837bcfb35c103e5cd14d129aeea0f.png" class="w-full align-middle rounded-lg transition-transform duration-300 transform hover:scale-105" />
</div>
</div>
</div>
</div>
</section>
<footer>
<div>
<p class="text-center text-sm text-gray-400">
<a class="relative text-sm hover:text-gray-600 before:absolute before:-bottom-1 before:h-0.5 before:w-full before:origin-right before:scale-x-0 before:bg-gradient-to-l before:from-pink-500 before:via-red-500 before:to-yellow-500 before:transition hover:before:scale-100" href="https://theunium.github.io">
made by unium :)
</a>
</p>
</div>
</footer>
<script src="js/app.js"></script>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</body>
</html>