diff --git a/src/components/LoadingScreen.tsx b/src/components/LoadingScreen.tsx
index 6372adcfd5d866a2155472339fda6ec86390cd88..63376e7640e91c162bcffc4c467c9abf3f89292e 100644
--- a/src/components/LoadingScreen.tsx
+++ b/src/components/LoadingScreen.tsx
@@ -1,12 +1,11 @@
 import React from 'react';
-import '../components/LoadingScreen.css';
-import customImage from '../assets/loading-image.png'; // Adjust the path if necessary
+import '../App/LoadingScreen.css'; // Adjust the path if necessary
 
 
 const LoadingScreen: React.FC = () => {
     return (
         <div id="LoadingScreen">
-            <img src={customImage} alt="Loading..." className="custom-animation" />
+            <img src="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg" alt="Loading..." className="custom-animation" />
         </div>
     );
 };