mirror of
https://github.com/ReviveMii/website
synced 2025-09-02 19:41:05 +02:00
65 lines
2.2 KiB
HTML
65 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>About Us | ReviveMii</title>
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="css/1.css">
|
|
<meta name="description" content="About Page for the ReviveMii Project.">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="logo-container">
|
|
<a href="index.html" class="logo" 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">Home</a>
|
|
<a href="projects.html">Projects</a>
|
|
<a href="about.html">About</a>
|
|
</nav>
|
|
</header>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<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="about">
|
|
<div class="container">
|
|
<h1>About ReviveMii</h1>
|
|
<p>ReviveMii is a Nintendo Revival Project</p>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<a href="/projects.html" class="cta">Projects and Services</a>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<p>© 2024 ReviveMii. All Rights Reserved.</p>
|
|
<p><a href="/index.html#end">More Links in Home Footer</a><p>
|
|
<p><a href="contact.html">Contact Us</a></p>
|
|
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
|
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
|
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|