diff --git a/client/src/pages/ReturningUser.jsx b/client/src/pages/ReturningUser.jsx index fca2cde0..8e687a28 100644 --- a/client/src/pages/ReturningUser.jsx +++ b/client/src/pages/ReturningUser.jsx @@ -1,22 +1,50 @@ import React, { useState } from 'react'; - import ReadyEvents from '../components/ReadyEvents'; +import { Box, Typography } from '@mui/material'; const ReturningUser = (props) => { - const [returningUser] = useState(true); + const [returningUser] = useState(true); - return ( -
-
-
-

Welcome Back!

-

We're happy to see you

- -
-
-
- ) + return ( + + + + Welcome Back! + + + We're happy to see you + + + + + ); }; export default ReturningUser; - \ No newline at end of file