From 1ddcfff8eba1e2bd71af9db01571e79ffeb01b00 Mon Sep 17 00:00:00 2001 From: Rodolfo Ruiz Date: Wed, 14 May 2025 19:48:23 -0600 Subject: [PATCH] feat: create the app header draft --- src/App.jsx | 42 +++++++++++++++++------------------ src/components/Background.jsx | 2 +- src/index.css | 3 +-- 3 files changed, 23 insertions(+), 24 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 373e8df..d43415f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,34 +1,34 @@ import { useState } from 'react' -import reactLogo from './assets/react.svg' -import fendiLogo from '/logo.png' +import fendiLogo from '/favicon.png' import Button from '@mui/material/Button'; -import VimeoEmbed from "./components/VimeoEmbed"; - 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 './App.css' function App() { + const [zone, setZone] = useState('public'); // Could be 'public' | 'restricted' | 'private' + return ( <> - {/* Static image background */} - {/* */} - - {/* Video background */} - - -
- - Fendi logo - -
- -
- -
+ + + + + + Fendi logo + + + Fendi Home Experience + + + + + ) } diff --git a/src/components/Background.jsx b/src/components/Background.jsx index 078ee32..0add675 100644 --- a/src/components/Background.jsx +++ b/src/components/Background.jsx @@ -1,4 +1,4 @@ -import Box from "@mui/material/Box"; +import Box from "@mui/material/Box"; export default function Background({ imageName = "background.jpg", opacity = 0.5 }) { diff --git a/src/index.css b/src/index.css index 08a3ac9..3ca73c6 100644 --- a/src/index.css +++ b/src/index.css @@ -24,10 +24,9 @@ a:hover { body { margin: 0; - display: flex; - place-items: center; min-width: 320px; min-height: 100vh; + display: block; } h1 {