diff --git a/README.md b/README.md
index e3eadc7..e2913e3 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,11 @@
-[![Java CI](https://github.com/MineInAbyss/DeeperWorld/actions/workflows/main.yml/badge.svg)](https://github.com/MineInAbyss/DeeperWorld/actions/workflows/main.yml)
-[![Package](https://badgen.net/maven/v/metadata-url/repo.mineinabyss.com/releases/com/mineinabyss/deeperworld/maven-metadata.xml)](https://repo.mineinabyss.com/releases/com/mineinabyss/deeperworld)
-[![Wiki](https://badgen.net/badge/color/Project%20Wiki/purple?icon=wiki&label)](https://wiki.mineinabyss.com/deeperworld)
-[![Contribute](https://shields.io/badge/Contribute-e57be5?logo=github%20sponsors&style=flat&logoColor=white)](https://wiki.mineinabyss.com/contribute)
+
# DeeperWorld
+[![Java CI](https://github.com/MineInAbyss/DeeperWorld/actions/workflows/main.yml/badge.svg)](https://github.com/MineInAbyss/DeeperWorld/actions/workflows/main.yml)
+[![Package](https://img.shields.io/maven-metadata/v?metadataUrl=https://repo.mineinabyss.com/releases/com/mineinabyss/deeperworld/maven-metadata.xml)](https://repo.mineinabyss.com/#/releases/com/mineinabyss/deeperworld)
+[![Wiki](https://img.shields.io/badge/-Project%20Wiki-blueviolet?logo=Wikipedia&labelColor=gray)](https://wiki.mineinabyss.com/deeperworld)
+[![Contribute](https://shields.io/badge/Contribute-e57be5?logo=github%20sponsors&style=flat&logoColor=white)](https://wiki.mineinabyss.com/contribute)
+
DeeperWorld is a plugin used on the Mine in Abyss server to create the illusion of a world taller than Minecraft's 256
block limit. We achieve this by dividing our deep world into `sections`, which have an overlap of identical blocks from
@@ -38,15 +40,15 @@ The config has some additional features like damaging players outside managed se
Please read the [project wiki](https://wiki.mineinabyss.com/deeperworld/) for more details on setup and
configuration.
-### Gradle
+#### build.gradle.kts
-```groovy
+```kotlin
repositories {
- maven { url 'https://repo.mineinabyss.com/releases' }
+ maven("https://repo.mineinabyss.com/releases")
}
dependencies {
- compileOnly 'com.derongan.minecraft:deeperworld:'
+ compileOnly("com.mineinabyss:deeperworld:")
}
```