87 lines
3.9 KiB
HTML
87 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Services — WiiLink24</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://proicons.netlify.app/css/icons.min.css">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<link rel="icon" href="assets/icon.png">
|
|
</head>
|
|
<body>
|
|
<div class="navbar" id="navbar">
|
|
<a href="https://wiilink24.com"><i class="fas fa-home"></i> Home</a>
|
|
<a href="https://wiilink24.com/news"><i class="fas fa-comment-alt-lines"></i> News</a>
|
|
<a href="https://wii.guide/wiilink24"><i class="fas fa-book"></i> Guide</a>
|
|
<a href="https://wiilink24.com/services"><i class="fas fa-cogs"></i> Services</a>
|
|
<a href="https://wiilink24.com/donators"><i class="fas fa-sparkles"></i> Donators</a>
|
|
<a href="javascript:void(0);" class="icon" onclick="mobileNav()"><i class="fa fa-bars"></i></a>
|
|
</div>
|
|
<div class="content">
|
|
<div class="section">
|
|
<h1 class="center"><i class="fas fa-cogs"></i> Services</h1>
|
|
<p class="center">These are the services that we (either now or in the future) maintain and their current state in development</p>
|
|
<table>
|
|
<tr>
|
|
<th>Service</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
<tr>
|
|
<a href="https://wiilink24.com/wiinoma">
|
|
<td>Wii Room</td>
|
|
<td class="yellow">Public Beta</td>
|
|
</a>
|
|
</tr>
|
|
<tr>
|
|
<td>Wii Room GO</td>
|
|
<td class="red">No Progress</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Demae Channel</td>
|
|
<td class="orange">Closed Beta</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Digicam Print Channel</td>
|
|
<td class="orange">Closed Beta</td>
|
|
</tr>
|
|
<tr>
|
|
<td>TV no Tomo Channel</td>
|
|
<td class="red">No Progress</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
<div class="item">
|
|
<h3><i class="fa fa-info-circle"></i> About WiiLink24</h3>
|
|
<p>WiiLink24 is a revival service for the now-defunct Japanese exclusive Wii channels. This service will (soon) allow you to use <b>Wii no Ma</b>, <b>Demae Channel</b>, and <b>Digicam Print Channel</b>.</p>
|
|
</div>
|
|
<div class="item">
|
|
<h3><i class="fa fa-copyright"></i> 2020-2021 WiiLink24 Team</h3>
|
|
<p>We are not associated with Nintendo nor its affiliates. We are also not associated with the staff of any other online services for the Wii.</p>
|
|
</div>
|
|
<div class="item">
|
|
<h3><i class="fa fa-globe-americas"></i> Social Media</h3>
|
|
<a target="_blank" href="https://github.com/wiilink24"><i class="fab fa-github"></i> GitHub</a>
|
|
<br>
|
|
<a target="_blank" href="https://discord.gg/n4ta3w6"><i class="fab fa-discord"></i> Discord</a>
|
|
<br>
|
|
<a target="_blank" href="https://twitter.com/wiilink24"><i class="fab fa-twitter"></i> Twitter</a>
|
|
<br>
|
|
<a target="_blank" href="https://www.patreon.com/WiiLink24"><i class="fab fa-patreon"></i> Patreon</a>
|
|
<br>
|
|
<a target="_blank" href="https://www.youtube.com/channel/UC_14J0EMfli2hVoBaQq0d3w"><i class="fab fa-youtube"></i> YouTube</a>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function mobileNav() {
|
|
var x = document.getElementById("navbar");
|
|
if (x.className === "navbar") {
|
|
x.className += " responsive";
|
|
} else {
|
|
x.className = "navbar";
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|