diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx
index bc91838..34fa833 100644
--- a/src/components/Footer.jsx
+++ b/src/components/Footer.jsx
@@ -1,32 +1,43 @@
-import { Box, Typography } from '@mui/material';
-import fendiLogo from '/Logo.png'
+import { AppBar, Toolbar, Typography, Box } from '@mui/material';
+import fendiLogo from '/Logo.png';
 
 export default function Footer({ zone = 'public' }) {
-    const bgColor = {
-        public: '#40120EFF',
-        restricted: '#40120EFF',
-        private: '#40120EFF',
-    };
-
     const year = new Date().getFullYear();
 
     return (
-        
-            
-                 -                {zone === 'private'
-                    ? `Admin Panel - Dream Views ${year}`
-                    : `© ${year} Dream Views. All rights reserved.`}
-            
-        
+            
+                
+
-                {zone === 'private'
-                    ? `Admin Panel - Dream Views ${year}`
-                    : `© ${year} Dream Views. All rights reserved.`}
-            
-        
+            
+                
+                     +                    
+                        {zone === 'private'
+                            ? `Admin Panel - Dream Views ${year}`
+                            : `© ${year} Dream Views. All rights reserved.`}
+                    
+                
+            
+        
     );
 }
\ No newline at end of file
+                    
+                        {zone === 'private'
+                            ? `Admin Panel - Dream Views ${year}`
+                            : `© ${year} Dream Views. All rights reserved.`}
+                    
+                
+            
+        
     );
 }
\ No newline at end of file