2024-04-06 06:44:27 +01:00
<!doctype html>
< html lang = "en" xmlns:th = "http://www.w3.org/1999/xhtml" >
< head >
2024-04-14 15:27:13 +01:00
< title > Minecraft Utilities - Wrapper for the Minecraft APIs< / title >
2024-04-06 06:44:27 +01:00
< meta charset = "UTF-8" >
< meta name = "viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
< meta http-equiv = "X-UA-Compatible" content = "ie=edge" >
2024-04-14 15:27:13 +01:00
< meta name = "keywords" content = "Minecraft, APIs, wrapper, utility, development" >
2024-04-08 04:51:17 +01:00
<!-- Discord Meta Tags -->
2024-04-14 15:27:13 +01:00
< meta name = "description" content = "Minecraft Utilities provides a convenient wrapper for the Minecraft APIs, simplifying their usage for developers." >
2024-04-08 04:51:17 +01:00
< meta name = "theme-color" content = "#3498DB" >
2024-04-14 15:27:13 +01:00
<!-- Open Graph / Facebook -->
< meta property = "og:title" content = "Minecraft Utilities - Wrapper for the Minecraft APIs" >
< meta property = "og:description" content = "Minecraft Utilities provides a convenient wrapper for the Minecraft APIs, simplifying their usage for developers." >
< meta property = "og:type" content = "website" >
< meta property = "og:url" th:content = "${public_url}" >
< meta property = "og:image" content = "https://git.fascinated.cc/MinecraftUtilities/Assets/raw/branch/master/logo.png" >
<!-- Twitter -->
< meta property = "twitter:card" content = "summary_large_image" >
< meta property = "twitter:url" th:content = "${public_url}" >
< meta property = "twitter:title" content = "Minecraft Utilities - Wrapper for the Minecraft APIs" >
< meta property = "twitter:description" content = "Minecraft Utilities provides a convenient wrapper for the Minecraft APIs, simplifying their usage for developers." >
< meta property = "twitter:image" content = "https://git.fascinated.cc/MinecraftUtilities/Assets/raw/branch/master/logo.png" >
2024-04-06 06:44:27 +01:00
< script src = "https://cdn.tailwindcss.com" > < / script >
< / head >
2024-04-07 03:06:23 +01:00
< body class = "flex flex-col h-screen mt-5 items-center bg-neutral-900 text-white text-center" >
2024-04-14 15:27:13 +01:00
< p class = "font-bold" > Hello!< / p >
< p > Wrapper for the Minecraft APIs to make them easier to use.< / p >
< p > This page will eventually be replaced with a new one.< / p >
< a class = "text-blue-600" target = ”_blank” href = "https://git.fascinated.cc/MinecraftUtilities/Backend" > Source Code< / a >
2024-04-06 06:44:27 +01:00
2024-04-14 15:27:13 +01:00
< div class = "flex flex-col mt-3" >
< p > Player Data: < a class = "text-blue-600" target = ”_blank” th:href = "${player_example_url}" th:text = "${player_example_url}" > ???< / a > < / p >
< p > Server Data: < a class = "text-blue-600" target = ”_blank” th:href = "${java_server_example_url}" th:text = "${java_server_example_url}" > ???< / a > < / p >
< p > Mojang Endpoint Status: < a class = "text-blue-600" target = ”_blank” th:href = "${mojang_endpoint_status_url}" th:text = "${mojang_endpoint_status_url}" > ???< / a > < / p >
< p > Swagger Docs: < a class = "text-blue-600" target = ”_blank” th:href = "${swagger_url}" th:text = "${swagger_url}" > ???< / a > < / p >
< / div >
2024-04-06 06:44:27 +01:00
< / body >
2024-04-14 15:27:13 +01:00
< / html >