Ponder is a library for creating interactive, in-game guides to help players understand content added by your mod. Ponder allows you to craft detailed and engaging tutorials that showcase mod mechanics in a way that makes it easier for players to learn how to use your mod.
Add the Create maven to your repositories block in your build script
repositories {
    maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/" }
    maven { url = "https://maven.createmod.net" }
}Add a property in your gradle.properties with the latest ponder version
which can be found here,
it should look like the following with the x replaced with the version you got from the link:
...
ponder_version = x
...Then add ponder to your project based on the loader and minecraft version you are using.
MultiLoader
dependencies {
    modImplementation("net.createmod.ponder:Ponder-Common-${minecraft_version}:${ponder_version}")
}dependencies {
    implementation("net.createmod.ponder:Ponder-Common-${minecraft_version}:${ponder_version}")
}Fabric
dependencies {
    modImplementation("net.createmod.ponder:Ponder-Fabric-${minecraft_version}:${ponder_version}")
}Forge
dependencies {
    implementation(fg.deobf("net.createmod.ponder:Ponder-Forge-${minecraft_version}:${ponder_version}"))
}dependencies {
    modImplementation("net.createmod.ponder:Ponder-Forge-${minecraft_version}:${ponder_version}")
}