37 lines
836 B
JavaScript
37 lines
836 B
JavaScript
import { useState } from 'react'
|
|
import reactLogo from './assets/react.svg'
|
|
import fendiLogo from '/logo.png'
|
|
import Button from '@mui/material/Button';
|
|
import VimeoEmbed from "./components/VimeoEmbed";
|
|
|
|
import Background from "./components/Background";
|
|
|
|
import './App.css'
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
|
|
{/* Static image background */}
|
|
{/* <Background imageName='background.jpg' opacity = {0.65} /> */}
|
|
|
|
{/* Video background */}
|
|
<VimeoEmbed videoId="1066622045" opacity={0.65} />
|
|
|
|
<div>
|
|
<a href="https://www.fendicasa.com/en/" target="_blank">
|
|
<img src={fendiLogo} className="logo" alt="Fendi logo" />
|
|
</a>
|
|
</div>
|
|
|
|
<div className="card">
|
|
<Button variant="contained" >
|
|
Login
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default App
|