diff --git a/404.html b/404.html
new file mode 100644
index 0000000..3653ada
--- /dev/null
+++ b/404.html
@@ -0,0 +1,33 @@
+
+
+
+
+ ReviveMii - 404
+
+
+
+
+

+
+
Home
+
TheErrorExe & ReviveMii Project 2024
+
+
+
diff --git a/4error.jpg b/4error.jpg
new file mode 100644
index 0000000..7c77526
Binary files /dev/null and b/4error.jpg differ
diff --git a/IMG_0224.JPG b/IMG_0224.JPG
new file mode 100644
index 0000000..d35a96f
Binary files /dev/null and b/IMG_0224.JPG differ
diff --git a/about.html b/about.html
new file mode 100644
index 0000000..c072730
--- /dev/null
+++ b/about.html
@@ -0,0 +1,64 @@
+
+
+
+
+
+ About Us | ReviveMii
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/assets/css/styles.css b/assets/css/styles.css
new file mode 100644
index 0000000..dd297f4
--- /dev/null
+++ b/assets/css/styles.css
@@ -0,0 +1,64 @@
+/* Basic Reset */
+body {
+ margin: 0;
+ font-family: Arial, sans-serif;
+ line-height: 1.6;
+}
+
+header {
+ background: #333;
+ color: #fff;
+ padding: 1rem 0;
+}
+
+header nav ul {
+ list-style: none;
+ text-align: center;
+}
+
+header nav ul li {
+ display: inline;
+ margin: 0 15px;
+}
+
+header nav ul li a {
+ color: #fff;
+ text-decoration: none;
+}
+
+.hero {
+ background: url('../images/hero-bg.jpg') no-repeat center center/cover;
+ color: #fff;
+ text-align: center;
+ padding: 3rem 0;
+}
+
+.hero .button {
+ background: #007BFF;
+ color: #fff;
+ padding: 0.5rem 1rem;
+ text-decoration: none;
+ border-radius: 5px;
+}
+
+.project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 20px;
+ padding: 2rem;
+}
+
+.project-card {
+ background: #f4f4f4;
+ padding: 1rem;
+ border-radius: 5px;
+ text-align: center;
+}
+
+footer {
+ text-align: center;
+ background: #333;
+ color: #fff;
+ padding: 1rem 0;
+ margin-top: 2rem;
+}
diff --git a/assets/status/services.json b/assets/status/services.json
new file mode 100644
index 0000000..cc737f9
--- /dev/null
+++ b/assets/status/services.json
@@ -0,0 +1,4 @@
+{
+ "Website": "https://revivemii.fr.to/",
+ "ReviveMii Image Share": "https://revivemii.fr.to:25580/?u=http://revivemii.fr.to:25581/"
+}
diff --git a/contact.html b/contact.html
new file mode 100644
index 0000000..0aaafdb
--- /dev/null
+++ b/contact.html
@@ -0,0 +1,3 @@
+
diff --git a/cookies.html b/cookies.html
new file mode 100644
index 0000000..2841fe2
--- /dev/null
+++ b/cookies.html
@@ -0,0 +1,60 @@
+
+
+
+
+
+ Cookie and LocalStorage Manager
+
+
+
+
+ Cookie and LocalStorage Manager
+ Click the buttons below to delete specific cookies or localStorage items:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/css/1.css b/css/1.css
new file mode 100644
index 0000000..ab3354d
--- /dev/null
+++ b/css/1.css
@@ -0,0 +1,280 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ background-color: #121212;
+ color: #ffffff;
+ line-height: 1.6;
+ margin: 0;
+}
+
+a {
+ text-decoration: none;
+ color: inherit;
+}
+
+ul {
+ list-style: none;
+}
+
+header {
+ background: #1e1e1e;
+ padding: 20px 40px;
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+header .logo-container {
+ display: flex;
+ align-items: center;
+}
+
+header .logo-img {
+ width: 25px;
+ height: auto;
+ margin-right: 10px;
+}
+
+header .logo span {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: #00c2ff;
+}
+
+header nav {
+ display: flex;
+ gap: 20px;
+}
+
+header nav a {
+ color: #ffffff;
+ font-size: 1rem;
+ transition: color 0.3s ease;
+}
+
+header nav a:hover {
+ color: #00c2ff;
+}
+
+.hero {
+ background: linear-gradient(145deg, #1c1c1c, #121212);
+ color: white;
+ padding: 80px 20px;
+ text-align: center;
+ height: 100vh;
+}
+
+.hero .container {
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.hero h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+}
+
+.hero p {
+ font-size: 1.2rem;
+ margin-bottom: 30px;
+}
+
+.cta {
+ padding: 10px 30px;
+ font-size: 1rem;
+ color: #ffffff;
+ background-color: #00c2ff;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+}
+
+.cta:hover {
+ background-color: #0094cc;
+}
+
+section {
+ padding: 60px 20px;
+}
+
+.container {
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+h1, h2, h3 {
+ color: #ffffff;
+ margin-bottom: 20px;
+}
+
+p {
+ font-size: 1.2rem;
+ margin-bottom: 20px;
+ color: #b0b0b0;
+}
+
+.projects-list {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 30px;
+ justify-content: space-between;
+}
+
+.project-card {
+ background: #1f1f1f;
+ border-radius: 10px;
+ overflow: hidden;
+ width: 30%;
+ transition: transform 0.3s ease;
+}
+
+.project-card:hover {
+ transform: translateY(-10px);
+}
+
+.project-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+}
+
+.card-content {
+ padding: 15px;
+}
+
+.card-content h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+}
+
+.card-content p {
+ font-size: 1rem;
+ color: #999999;
+}
+
+.card-content .btn {
+ padding: 10px 20px;
+ background-color: #00c2ff;
+ color: #ffffff;
+ border-radius: 5px;
+ text-align: center;
+ display: inline-block;
+ margin-top: 15px;
+ transition: background-color 0.3s ease;
+}
+
+.card-content .btn:hover {
+ background-color: #0094cc;
+}
+
+.about {
+ background: #1f1f1f;
+ padding: 60px 20px;
+ text-align: center;
+ border-radius: 10px;
+}
+
+.about p {
+ color: #b0b0b0;
+ font-size: 1.1rem;
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+footer {
+ background-color: #1e1e1e;
+ padding: 40px 20px;
+ text-align: center;
+ color: #cccccc;
+}
+
+footer p {
+ margin-bottom: 10px;
+}
+
+footer a {
+ color: #00c2ff;
+ transition: color 0.3s ease;
+}
+
+footer a:hover {
+ color: #0094cc;
+}
+
+form {
+ background-color: #1f1f1f;
+ padding: 20px;
+ border-radius: 10px;
+}
+
+form input, form textarea {
+ width: 100%;
+ padding: 10px;
+ margin-bottom: 15px;
+ background-color: #2c2c2c;
+ color: #ffffff;
+ border: 1px solid #444;
+ border-radius: 5px;
+}
+
+form button {
+ padding: 10px 20px;
+ background-color: #00c2ff;
+ color: #ffffff;
+ border-radius: 5px;
+ border: none;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+}
+
+form button:hover {
+ background-color: #0094cc;
+}
+
+::-webkit-scrollbar {
+ width: 8px;
+}
+
+::-webkit-scrollbar-thumb {
+ background: #00c2ff;
+ border-radius: 10px;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background: #0094cc;
+}
+
+@media (max-width: 768px) {
+ header {
+ flex-direction: column;
+ align-items: flex-start;
+ }
+
+ header .logo-container {
+ margin-bottom: 20px;
+ }
+
+ .projects-list {
+ flex-direction: column;
+ }
+
+ .project-card {
+ width: 100%;
+ }
+
+ .cta {
+ font-size: 1.2rem;
+ padding: 12px 40px;
+ }
+}
diff --git a/discord-redirect.html b/discord-redirect.html
new file mode 100644
index 0000000..35da35e
--- /dev/null
+++ b/discord-redirect.html
@@ -0,0 +1,4 @@
+
+
diff --git a/dl/sitemap.xml b/dl/sitemap.xml
new file mode 100644
index 0000000..216f476
--- /dev/null
+++ b/dl/sitemap.xml
@@ -0,0 +1,53 @@
+
+
+
+ https://revivemii.errexe.xyz/
+ daily
+ 1.0
+
+
+ https://revivemii.errexe.xyz/contact.html
+ monthly
+ 0.5
+
+
+ https://revivemii.errexe.xyz/blogs.html
+ daily
+ 0.8
+
+
+ https://revivemii.errexe.xyz/projects.html
+ daily
+ 0.9
+
+
+ https://revivemii.errexe.xyz/freedns.html
+ monthly
+ 0.2
+
+
+ https://revivemii.errexe.xyz/revivetube
+ monthly
+ 1.0
+
+
+ https://revivemii.errexe.xyz/status
+ monthly
+ 0.8
+
+
+ https://revivemii.errexe.xyz/imageshare
+ monthly
+ 0.8
+
+
+ https://revivemii.errexe.xyz/feedback.html
+ monthly
+ 0.8
+
+
+ https://revivemii.errexe.xyz/about.html
+ monthly
+ 0.8
+
+
diff --git a/favicon.ico b/favicon.ico
new file mode 100644
index 0000000..3a5a929
Binary files /dev/null and b/favicon.ico differ
diff --git a/imageshare.jpg b/imageshare.jpg
new file mode 100644
index 0000000..cf99e2e
Binary files /dev/null and b/imageshare.jpg differ
diff --git a/imageshare/index.html b/imageshare/index.html
new file mode 100644
index 0000000..52a1d32
--- /dev/null
+++ b/imageshare/index.html
@@ -0,0 +1,93 @@
+
+
+
+
+
+ ReviveMii Image Share | ReviveMii
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
ReviveMii Image Transfer
+
A Revival for the Nintendo Image Share on 3ds and Wii U
+
+
+
+
+
+
+
+
About the Project
+
Upload Photos from your 3DS or Wii U and transfer it to your Computer!
+
+
+
+
How to use
+
+Requirements
+- • Wii U or 3DS
+- • An Internet Connection
+- • Computer or Smartphone
+
+
+- • 1. Go to http://imageshare.d.errexe.xyz on your 3ds or Wii U (with http://)
+- • 2. Upload an Image
+- • 3. Scan the QR Code with your Smart Phone or type the URL in your Computer
+- • 4. Download it
+
+
You now successfully transferred an Image from your Wii U/3DS to your Device!
+
+
+
+
+
+
+
diff --git a/img/rss.png b/img/rss.png
new file mode 100644
index 0000000..dd1a6fd
Binary files /dev/null and b/img/rss.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..298e8ad
--- /dev/null
+++ b/index.html
@@ -0,0 +1,77 @@
+
+
+
+
+
+ReviveMii: We revive Nintendo Online Services
+
+
+
+
+
+
+
+