diff --git a/wiki/pages/home.html b/wiki/pages/home.html
index 3fad446944192e58b12363e4bc513caeafad5443..d0e98a0578b04a639bf64d09f789bf01d8a78436 100644
--- a/wiki/pages/home.html
+++ b/wiki/pages/home.html
@@ -149,9 +149,33 @@
         margin: 20px;
       }
     }
+    .loader-container {
+            position: fixed;
+            top: 0;
+            left: 0;
+            width: 100%;
+            height: 100%;
+            background-color: #ffffff; /* Solid white background */
+            display: flex;
+            flex-direction: column;
+            justify-content: center;
+            align-items: center;
+            z-index: 9999;
+        }
+        
+        .loader-gif {
+            width: 150px;
+            height: 150px;
+        }
+        
   </style>
 </head>
 <body>
+
+  <div class="loader-container">
+    <img src="https://static.igem.wiki/teams/5187/art/loading.gif" alt="Loading" class="loader-gif">
+</div>
+
   <div id="menu">
     {% include 'menu.html' %}
   </div>