mirror of
https://github.com/ReviveMii/website
synced 2025-09-02 19:41:05 +02:00
117 lines
4.3 KiB
HTML
117 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1MVYJRKPK2"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-1MVYJRKPK2');
|
|
</script>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Featured Projects and Services | ReviveMii</title>
|
|
<link rel="stylesheet" href="/css/1.css">
|
|
<meta name="description" content="Services and Projects by the ReviveMii Project">
|
|
</head>
|
|
<body>
|
|
<div id="loadicon" style="display:none; width:40px; height:40px; position:fixed;top:8px;left:8px; overflow:hidden;z-index:1050;" >
|
|
<script>
|
|
var loadingsfx = new Audio("15.wav");
|
|
function startloading() {
|
|
document.getElementById("loadicon").style.display="block";
|
|
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
|
|
loadingsfx.play();
|
|
loadingsfx.loop=true;
|
|
loadingsfx.currentTime = 0;
|
|
}
|
|
|
|
function stoploading() {
|
|
document.getElementById("loadicon").style.display="none";
|
|
loadingsfx.pause();
|
|
}
|
|
</script>
|
|
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
|
|
</div>
|
|
<header onload="stoploading();"> <div class="logo-container">
|
|
<a href="index.html" class="logo" onclick="startloading();" style="text-decoration: none">
|
|
<img src="favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
|
<span>ReviveMii</span>
|
|
</a>
|
|
</div>
|
|
<nav>
|
|
<a href="index.html" onclick="startloading();">Home</a>
|
|
<a href="projects.html" onclick="startloading();">Projects</a>
|
|
<a href="about.html" onclick="startloading();">About</a>
|
|
</nav>
|
|
|
|
</header>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<section class="projects-hero">
|
|
<div class="container">
|
|
<h1 style="text-align:center;">Our Featured Projects and Services</h1>
|
|
<p style="text-align:center;">ReviveMii Projects</p>
|
|
<hr>
|
|
</div>
|
|
</section>
|
|
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
|
|
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
|
|
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
|
|
</div>
|
|
|
|
<script>
|
|
if (!localStorage.getItem('cookiesAccepted')) {
|
|
document.getElementById('cookiePopup').style.display = 'block';
|
|
}
|
|
|
|
function acceptCookies() {
|
|
localStorage.setItem('cookiesAccepted', 'true');
|
|
document.getElementById('cookiePopup').style.display = 'none';
|
|
}
|
|
</script>
|
|
<section class="projects-list" style="margin-top:-80px;">
|
|
<div class="container">
|
|
|
|
<div class="project-card">
|
|
<img src="/riivivetube.png" alt="RiiviveTube" style="height:240px;">
|
|
<div class="card-content">
|
|
<h3>RiiviveTube</h3>
|
|
<p>Wii YouTube Channel Revival</p>
|
|
<a href="/riivivetube" onclick="startloading();" class="btn">Learn More</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<br><br>
|
|
<div class="container">
|
|
<div class="project-card">
|
|
<img src="/revivetube.png" alt="ReviveTube" style="height:240px;">
|
|
<div class="card-content">
|
|
<h3>ReviveTube</h3>
|
|
<p>Watch YouTube Videos on your Wii Internet Channel</p>
|
|
<a href="/revivetube" onclick="startloading();" class="btn">Learn More</a>
|
|
</div>
|
|
</div>
|
|
<br><br>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<p>© 2025 ReviveMii</p>
|
|
<p onclick="startloading();"><a href="/index.html#end">More Links in Home Footer</a><p>
|
|
<p onclick="startloading();"><a href="contact.html">Contact Us</a></p>
|
|
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
|
|
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
|
<p onclick="startloading();"><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|