import React, { useRef } from 'react' import styled from 'styled-components' import intro from '../../videos/introduction-video.mp4' import { screenSizes } from '../constants' const LandingContainer = styled.div` background-color: black; width: 100%; height: 100vh; ` const VideoPlayer = styled.video` object-fit: cover; width: 100%; height: 100vh; position: relative; top: 0; left: 0; z-index: 1; @media (max-width: ${screenSizes.m}px) { height: 50vh; } @media (max-width: ${screenSizes.xs}px) { height: 40vh; } ` const Landing = () => { const videoRef = useRef(null) return ( ) } export default Landing