129 lines
3.3 KiB
HTML
129 lines
3.3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Welcome to kitsune.icu!</title>
|
||
|
<style>
|
||
|
body {
|
||
|
background-color: #1c1c2a;
|
||
|
color: #eaeaea;
|
||
|
font-family: Arial, sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 800px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 2rem;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.services {
|
||
|
display: flex;
|
||
|
justify-content: space-around;
|
||
|
flex-wrap: wrap;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.service {
|
||
|
margin: 10px;
|
||
|
padding: 10px;
|
||
|
border: 1px solid #444;
|
||
|
border-radius: 8px;
|
||
|
width: 150px;
|
||
|
background-color: #2a2a3b;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
margin-top: 20px;
|
||
|
font-size: 0.8rem;
|
||
|
color: #aaa;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #58a6ff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
.notice {
|
||
|
border: 1px solid #444;
|
||
|
padding: 20px;
|
||
|
background-color: #2a2a3b;
|
||
|
margin-top: 20px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
.notice h2 {
|
||
|
margin-top: 0;
|
||
|
color: #58a6ff;
|
||
|
}
|
||
|
|
||
|
.notice p {
|
||
|
margin: 10px 0;
|
||
|
line-height: 1.6;
|
||
|
}
|
||
|
|
||
|
.badge {
|
||
|
display: inline-block;
|
||
|
padding: 5px 10px;
|
||
|
border-radius: 5px;
|
||
|
background-color: #444;
|
||
|
color: #fff;
|
||
|
margin: 5px;
|
||
|
font-size: 0.9rem;
|
||
|
}
|
||
|
|
||
|
.badge-linux {
|
||
|
background-color: #6aa84f;
|
||
|
}
|
||
|
|
||
|
.badge-no {
|
||
|
background-color: #cc0000;
|
||
|
}
|
||
|
|
||
|
.badge-donate {
|
||
|
background-color: #ffcc00;
|
||
|
color: #000;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>Welcome to kitsune.icu!</h1>
|
||
|
|
||
|
<div class="services">
|
||
|
<a href="https://gitea.kitsune.icu" class="service">Gitea</a>
|
||
|
<a href="https://4get.kitsune.icu" class="service">4get</a>
|
||
|
<a href="https://zipline.kitsune.icu" class="service">Zipline</a>
|
||
|
</div>
|
||
|
|
||
|
<div class="notice">
|
||
|
<h2>About kitsune.icu</h2>
|
||
|
<p>Welcome to kitsune.icu, where we turn caffeine into code and dreams into open-source reality!</p>
|
||
|
<p>We're all about keeping things simple and transparent. No creepy data collection here, just pure, unadulterated geekiness.</p>
|
||
|
<p>So dive in, contribute, and have a blast with the awesome projects hosted here!</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="footer">
|
||
|
<p>© 2025 kitsune.icu</p>
|
||
|
<p><a href="termsOfService.html">Terms of Service</a> | <a href="privacyPolicy.html">Privacy Policy</a></p>
|
||
|
<div>
|
||
|
<img src="_cdn/linuxPowered.gif" alt="A GIF saying 'Linux Powered'" class="badge">
|
||
|
<img src="_cdn/noWeb3.gif" alt="A GIF saying 'Say no to WEB3'" class="badge">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|