diff --git a/frontend/src/pages/HowItWorks.tsx b/frontend/src/pages/HowItWorks.tsx index b28db17..e09a71f 100644 --- a/frontend/src/pages/HowItWorks.tsx +++ b/frontend/src/pages/HowItWorks.tsx @@ -15,6 +15,8 @@ import { Stepper, Stack, ButtonProps, + useMediaQuery, + useTheme, } from '@mui/material'; import { styled } from '@mui/material/styles'; import PlayArrowIcon from '@mui/icons-material/PlayArrow'; @@ -215,6 +217,8 @@ const HeroButton = (props: HeroButtonProps) => { const HowItWorks: React.FC = () => { const navigate = useNavigate(); + const theme = useTheme(); + const isMobile = useMediaQuery(theme.breakpoints.down('md')); const handleGetStarted = () => { navigate('/job-analysis'); @@ -289,7 +293,7 @@ const HowItWorks: React.FC = () => { - +