diff --git a/src/App.jsx b/src/App.jsx
index cc5a2f2..55be451 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,12 +1,8 @@
import { useState } from 'react'
-import fendiLogo from '/favicon.png'
-import Button from '@mui/material/Button';
import Background from "./components/Background";
-import AppBar from '@mui/material/AppBar';
-import Toolbar from '@mui/material/Toolbar';
-import Typography from '@mui/material/Typography';
-import IconButton from '@mui/material/IconButton';
import AppHeader from './components/AppHeader';
+import Footer from './components/Footer';
+import Box from '@mui/material/Box';
import './App.css'
@@ -16,21 +12,24 @@ function App() {
return (
<>
-
+
-
+
- {/*
-
-
-
-
-
- Fendi Casa Experience
-
-
-
- */}
+
+
+ Welcome to the Fendi Casa Experience
+ This is a sample box.
+
+
+
+
>
)
diff --git a/src/components/AppHeader.jsx b/src/components/AppHeader.jsx
index ac2e259..3606574 100644
--- a/src/components/AppHeader.jsx
+++ b/src/components/AppHeader.jsx
@@ -12,7 +12,7 @@ export default function AppHeader({ zone = 'public' }) {
-
+
{isPrivate ? "Private" : isRestricted ? "Restricted" : "Fendi Casa Experience"}
@@ -37,7 +37,7 @@ export default function AppHeader({ zone = 'public' }) {
/>
)}
-
+
{/* Login button only visible for public zone */}
{isPublic && (
diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx
new file mode 100644
index 0000000..4a7ebe0
--- /dev/null
+++ b/src/components/Footer.jsx
@@ -0,0 +1,32 @@
+import { Box, Typography } from '@mui/material';
+import fendiLogo from '/logo.png'
+
+export default function Footer({ zone = 'public' }) {
+ const bgColor = {
+ public: '#000000a0',
+ restricted: '#e0e0ff',
+ private: '#d0f0e0',
+ };
+
+ const year = new Date().getFullYear();
+
+ return (
+
+
+
+ {zone === 'private'
+ ? `Admin Panel - Fendi ${year}`
+ : `© ${year} Fendi. All rights reserved.`}
+
+
+ );
+}
\ No newline at end of file