diff --git a/src/components/WhatToExpect/WhatToExpect.jsx b/src/components/WhatToExpect/WhatToExpect.jsx index 8aa2350..d61a313 100644 --- a/src/components/WhatToExpect/WhatToExpect.jsx +++ b/src/components/WhatToExpect/WhatToExpect.jsx @@ -1,9 +1,14 @@ -import {Box, Container, Grid, Typography} from "@mui/material"; +"use client" +import {Box, Container, Grid, IconButton, Typography} from "@mui/material"; import {WindowCard} from "../WindowCard/WindowCard.jsx"; import HackHPIWrapper from "../Theme/HackHPIWrapper.jsx"; +import {PlayArrow} from "@mui/icons-material"; +import {useState} from "react"; function WhatToExpect() { + const [playVideo, setPlayVideo] = useState(false) + return ( @@ -28,13 +33,34 @@ function WhatToExpect() { -