diff --git a/index.html b/index.html index 438b0ac..4c82771 100644 --- a/index.html +++ b/index.html @@ -5,17 +5,21 @@ wah.su | Homepage - + + + + +
- +
- +

Fetching Services Status

@@ -37,7 +41,7 @@
- + \ No newline at end of file diff --git a/privacy.html b/privacy.html new file mode 100644 index 0000000..17514c9 --- /dev/null +++ b/privacy.html @@ -0,0 +1,175 @@ + + + + + + wah.su | Privacy Policy + + + + + + + +
+
+
+ +

/Privacy

+
+ +
+

+ Fetching Services Status +

+
+
+ +
+
+

Privacy Policy for wah.su

+

+ At wah.su, accessible from https://wah.su and its subdomains, one of + our main priorities is the privacy of our visitors. This Privacy + Policy document contains types of information that is collected and + recorded by wah.su and how we use it. +

+

+ If you have additional questions or require more information about + our Privacy Policy, do not hesitate to contact us. +

+
+ +
+

Log Files

+

+ wah.su follows a standard procedure of using log files. These files + log visitors when they visit websites. All hosting companies do this + and a part of hosting services' analytics. The information collected + by log files include internet protocol (IP) addresses, browser type, + Internet Service Provider (ISP), date and timestamp, referring/exit + pages, and possibly the number of clicks. These are not linked to + any information that is personally identifiable. The purpose of the + information is for analyzing trends, administering the site, + tracking users' movement on the website, and gathering demographic + information. +

+
+ +
+

Cookies and Web Beacons

+

+ Like any other website, wah.su uses "cookies". These cookies are + used to store information including visitors' preferences, and the + pages on the website that the visitor accessed or visited. The + information is used to optimize the users' experience by customizing + our web page content based on visitors' browser type and/or other + information. +

+
+ + + +
+

Third Party Privacy Policies

+

+ wah.su's Privacy Policy does not apply to other advertisers or + websites. Thus, we are advising you to consult the respective + Privacy Policies of these third-party ad servers for more detailed + information. It may include their practices and instructions about + how to opt-out of certain options. +

+

+ You can choose to disable cookies through your individual browser + options. To know more detailed information about cookie management + with specific web browsers, it can be found at the browsers' + respective websites. +

+
+ +
+

Children's Information

+

+ Another part of our priority is adding protection for children while + using the internet. We encourage parents and guardians to observe, + participate in, and/or monitor and guide their online activity. +

+

+ wah.su does not knowingly collect any Personal Identifiable + Information from children under the age of 13. If you think that + your child provided this kind of information on our website, we + strongly encourage you to contact us immediately and we will do our + best efforts to promptly remove such information from our records. +

+
+ +
+

Online Privacy Policy Only

+

+ This Privacy Policy applies only to our online activities and is + valid for visitors to our website with regards to the information + that they shared and/or collect in wah.su. This policy is not + applicable to any information collected offline or via channels + other than this website. +

+
+ + + +
+

+ Our Privacy Policy was created with the help of the + Privacy Policy Generator. +

+
+
+
+ + + + diff --git a/services.html b/services.html new file mode 100644 index 0000000..1e4909a --- /dev/null +++ b/services.html @@ -0,0 +1,47 @@ + + + + + + wah.su | Services + + + + + + + +
+
+
+ +

/Services

+
+ +
+

+ Fetching Services Status +

+
+
+
+ + + + diff --git a/static/tailwind.css b/static/tailwind.css index 6c9b29c..b94147b 100644 --- a/static/tailwind.css +++ b/static/tailwind.css @@ -602,6 +602,19 @@ video { z-index: -10; } +.mx-auto { + margin-left: auto; + margin-right: auto; +} + +.mb-4 { + margin-bottom: 1rem; +} + +.block { + display: block; +} + .flex { display: flex; } @@ -618,6 +631,10 @@ video { height: 100dvh; } +.h-auto { + height: auto; +} + .h-full { height: 100%; } @@ -634,6 +651,10 @@ video { width: 100%; } +.max-w-screen-xl { + max-width: 1280px; +} + .flex-row { flex-direction: row; } @@ -658,6 +679,10 @@ video { justify-content: space-between; } +.gap-16 { + gap: 4rem; +} + .gap-4 { gap: 1rem; } @@ -704,11 +729,20 @@ video { padding: 2rem; } +.p-4 { + padding: 1rem; +} + .text-2xl { font-size: 1.5rem; line-height: 2rem; } +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} + .text-lg { font-size: 1.125rem; line-height: 1.75rem; @@ -719,11 +753,24 @@ video { line-height: 1.75rem; } +.font-bold { + font-weight: 700; +} + +.font-medium { + font-weight: 500; +} + .text-white { --tw-text-opacity: 1; color: rgb(255 255 255 / var(--tw-text-opacity, 1)); } +.text-blue-600 { + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity, 1)); +} + .underline { text-decoration-line: underline; } @@ -780,6 +827,10 @@ video { color: rgb(255 133 27 / var(--tw-text-opacity, 1)); } +.hover\:underline:hover { + text-decoration-line: underline; +} + @media (min-width: 640px) { .sm\:h-8 { height: 2rem; @@ -789,6 +840,14 @@ video { width: 2rem; } + .sm\:flex-row { + flex-direction: row; + } + + .sm\:items-center { + align-items: center; + } + .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; @@ -798,6 +857,11 @@ video { font-size: 1.875rem; line-height: 2.25rem; } + + .sm\:text-6xl { + font-size: 3.75rem; + line-height: 1; + } } @media (min-width: 768px) { @@ -848,4 +912,9 @@ video { --tw-bg-opacity: 1; background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1)); } + + .dark\:text-blue-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity, 1)); + } } \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index c8492ce..15edad0 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,6 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: ["./index.html", "./static/js/**/*.js"], + content: ["./index.html", "./services.html", "./privacy.html", "./static/js/**/*.js"], theme: { container: { center: true,