mirror of
https://github.com/wah-su/wah-su.github.io.git
synced 2025-04-07 00:34:43 +00:00
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>wah.su | Services</title>
|
|
<link rel="stylesheet" href="./static/tailwind.css" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
|
|
<body class="bg-[#120D0C] text-white ubuntu-mono-regular">
|
|
<div class="container w-full p-8 md:p-16">
|
|
<div
|
|
class="flex flex-col gap-8 lg:items-center lg:justify-between lg:flex-row"
|
|
>
|
|
<div
|
|
class="flex flex-col gap-4 text-4xl sm:items-center sm:text-6xl sm:flex-row"
|
|
>
|
|
<a href="./index.html" class="block"
|
|
><img class="w-96" src="static/LOGO.svg" alt="wah.su" id="logo"
|
|
/></a>
|
|
<p class="block">/Services</p>
|
|
</div>
|
|
<a
|
|
href="https://status.wah.su"
|
|
class="flex flex-row items-center justify-center gap-4"
|
|
target="_blank"
|
|
>
|
|
<div
|
|
class="w-6 h-6 transition ease-in bg-gray-500 rounded-full sm:w-8 sm:h-8 aspect-square duration-400"
|
|
id="status-icon"
|
|
></div>
|
|
<p class="text-xl sm:text-3xl" id="status-text">
|
|
Fetching Services Status
|
|
</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="./static/js/checkstatus.js"></script>
|
|
</body>
|
|
</html>
|