diff --git a/docute-landing.js b/docute-landing.js
new file mode 100644
index 0000000..9c89413
--- /dev/null
+++ b/docute-landing.js
@@ -0,0 +1,33 @@
+const landing = {
+ html: `
+
+

+
This is not an official EssentialsX site.
+
+
+
+ `,
+ component: {
+ components: {
+ DownloadPage,
+ },
+ data() {
+ return {
+ showDownloads: false,
+ };
+ },
+ methods: {
+ toggleDownloads() {
+ this.showDownloads = !this.showDownloads;
+ }
+ }
+ },
+};
+
+window.landing = landing;
\ No newline at end of file
diff --git a/index.html b/index.html
index c6a61d0..5291e07 100644
--- a/index.html
+++ b/index.html
@@ -13,10 +13,14 @@