Skip to content

Commit

Permalink
simple landing
Browse files Browse the repository at this point in the history
  • Loading branch information
nosqd committed Aug 15, 2024
1 parent d08b4dc commit 6903a97
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 12 deletions.
12 changes: 0 additions & 12 deletions _config.yml

This file was deleted.

74 changes: 74 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>No Limit Minecarts - Minecraft Mod</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #e0e0e0;
line-height: 1.6;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
color: #4caf50;
text-align: center;
}
img {
display: block;
margin: 20px auto;
max-width: 128px;
}
h2 {
color: #81c784;
border-bottom: 1px solid #81c784;
padding-bottom: 5px;
}
a {
color: #64b5f6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.section {
background-color: #212121;
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<img src="/assets/nlm-icon-128-r.png" alt="No Limit Minecarts Icon">
<h1>No Limit Minecarts</h1>

<div class="section">
<p>24w33a Fabric Mod that removes limits for gamerule <code>maxMinecartSpeed</code></p>
</div>

<div class="section">
<h2>Downloads</h2>
<p>Download from <a href="https://github.com/nosqd/no-limit-minecarts/releases" target="_blank">github releases</a></p>
</div>

<div class="section">
<h2>Why are minecarts slow when speed is max?</h2>
<p>I've noticed that speed of minecart is kind of limited when there are no passengers.</p>
</div>

<div class="section">
<h2>Contributing</h2>
<p>Feel free to contribute, anything, like anything this project started tonight to just have fun with the new update.</p>
</div>
</div>
</body>
</html>

0 comments on commit 6903a97

Please sign in to comment.