feat: add privacy policy page

This commit is contained in:
Kentai Radiquum 2024-11-30 19:52:59 +05:00
parent fe5b125690
commit f0a1212cc7
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 300 additions and 5 deletions

View file

@ -5,17 +5,21 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>wah.su | Homepage</title>
<link rel="stylesheet" href="static/tailwind.css">
<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">
<link rel="preload" href="./static/will-rust-Vv1E0zcQDCI-unsplash.jpg" as="image">
<link rel="prefetch" href="./services.html" />
<link rel="prefetch" href="./privacy.html" />
</head>
<body class="bg-[#120D0C] text-white ubuntu-mono-regular">
<div class="container flex flex-col justify-between w-full h-[100dvh] p-8 md:p-16">
<img class="absolute inset-0 object-cover w-full h-full blur-sm -z-10" src="static/will-rust-Vv1E0zcQDCI-unsplash.jpg" alt=""/>
<img class="absolute inset-0 object-cover w-full h-full blur-sm -z-10" src="./static/will-rust-Vv1E0zcQDCI-unsplash.jpg" alt=""/>
<div class="flex flex-col gap-8 lg:items-center lg:justify-between lg:flex-row">
<img class="w-96" src="static/LOGO.svg" alt="wah.su" id="logo" />
<img class="w-96" src="./static/LOGO.svg" alt="wah.su" id="logo" />
<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>
@ -37,7 +41,7 @@
</div>
</div>
<script src="static/js/checkstatus.js"></script>
<script src="./static/js/checkstatus.js"></script>
</body>
</html>