dark mode woop!

This commit is contained in:
Lee 2024-04-07 00:37:51 +01:00
parent fa004bc3c8
commit 8db337204e
3 changed files with 5 additions and 4 deletions

@ -12,6 +12,7 @@ public class HomeController {
/** /**
* The example UUID. * The example UUID.
*/ */
@SuppressWarnings("FieldCanBeLocal")
private final String exampleUuid = "eeab5f8a-18dd-4d58-af78-2b3c4543da48"; private final String exampleUuid = "eeab5f8a-18dd-4d58-af78-2b3c4543da48";
@RequestMapping(value = "/") @RequestMapping(value = "/")

@ -10,7 +10,7 @@
<script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.tailwindcss.com"></script>
</head> </head>
<body class="flex flex-col h-screen mt-5 items-center"> <body class="flex flex-col h-screen mt-5 items-center bg-neutral-900 text-white">
<p class="font-bold text-red-600">Oh, no!</p> <p class="font-bold text-red-600">Oh, no!</p>
<p>You have encountered an error.</p> <p>You have encountered an error.</p>

@ -10,13 +10,13 @@
<script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.tailwindcss.com"></script>
</head> </head>
<body class="flex flex-col h-screen mt-5 items-center"> <body class="flex flex-col h-screen mt-5 items-center bg-neutral-900 text-white">
<p class="font-bold">Hello!!!</p> <p class="font-bold">Hello!!!</p>
<p>Wrapper for the Minecraft APIs to make them easier to use.</p> <p>Wrapper for the Minecraft APIs to make them easier to use.</p>
<div class="flex flex-col mt-3"> <div class="flex flex-col mt-3">
<p>Player Data: <a class="text-blue-600" th:href="${url}" th:text="${url}">Player Data</a></p> <p>Player Data: <a class="text-blue-600" th:href="${url}" th:text="${url}">???</a></p>
<p>Avatar Url: <a class="text-blue-600" th:href="${avatar_url}" th:text="${avatar_url}">Avatar Url</a></p> <p>Avatar Url: <a class="text-blue-600" th:href="${avatar_url}" th:text="${avatar_url}">???</a></p>
</div> </div>
</body> </body>
</html> </html>